Search found 89 matches

by pagano.paganino
Thu Jan 21, 2016 4:42 pm
Forum: Hardware Projects
Topic: Smart Card and CCID driver
Replies: 7
Views: 13190

Re: Smart Card and CCID driver

In CDC mode:
Capture3.PNG
Capture3.PNG (14.97 KiB) Viewed 13095 times
by pagano.paganino
Thu Jan 21, 2016 4:41 pm
Forum: Hardware Projects
Topic: Smart Card and CCID driver
Replies: 7
Views: 13190

Re: Smart Card and CCID driver

Windows usb CCID driver:
Capture.PNG
Capture.PNG (37.19 KiB) Viewed 13096 times
Capture0.PNG
Capture0.PNG (38.22 KiB) Viewed 13096 times
Capture1.PNG
Capture1.PNG (38.91 KiB) Viewed 13096 times
by pagano.paganino
Thu Jan 21, 2016 4:40 pm
Forum: Hardware Projects
Topic: Smart Card and CCID driver
Replies: 7
Views: 13190

Smart Card and CCID driver

Hi folks, i have just completed the implementation of the module Smart cards and usb CCID driver. The result is this: rsz_img_6169.jpg rsz_img_6176.jpg In use: rsz_img_6185.jpg For use it i have implemented new usb_mode: pyb.usb_mode('CCID') pyb.usb_mode('CCID+MSC') and a pyb module SMARTCARD(): >>>...
by pagano.paganino
Fri Dec 11, 2015 12:00 pm
Forum: MicroPython pyboard
Topic: new usb device class
Replies: 8
Views: 8671

Re: new usb device class

Can someone help me?
by pagano.paganino
Tue Dec 08, 2015 10:44 am
Forum: MicroPython pyboard
Topic: Ideas for next evolution of pyboard
Replies: 75
Views: 71726

Re: Ideas for next evolution of pyboard

@pagano.paganino The Pyboard MPU supports encryption in hardware. All it needs is for someone who understands cryptography to write a driver for it. From : http://www.st.com/web/catalog/mmc/FM141/SC1169/SS1577/LN1035 Rich connectivity: Superior and innovative peripherals •2x USB OTG (one with HS su...
by pagano.paganino
Mon Dec 07, 2015 10:36 am
Forum: MicroPython pyboard
Topic: Ideas for next evolution of pyboard
Replies: 75
Views: 71726

Re: Ideas for next evolution of pyboard

What do you think you have a pyboard with encryption?
With the MCU STMF415 that with the same pinout and get so we can enable the encryption in hardware and have the ability to write a file to the SD format .pye(ncrypted) ...

A pyboard 1.1 enc? :D :D :D
by pagano.paganino
Wed Nov 25, 2015 12:17 pm
Forum: MicroPython pyboard
Topic: new usb device class
Replies: 8
Views: 8671

Re: new usb device class

Hi Dave, I think you'll have to disable one of CDC or MSC then. Looking at the 405 datasheet, there are only a total 3 IN endpoints, and 3 OUT endpoints (and these can be configured to be bulk or INT). Personally, I'd recommend disabling MSC and use CDC + CCID. You can use something like rshell to c...
by pagano.paganino
Fri Nov 20, 2015 10:32 pm
Forum: MicroPython pyboard
Topic: new usb device class
Replies: 8
Views: 8671

Re: new usb device class

Someone else can help me?
by pagano.paganino
Tue Nov 17, 2015 10:54 pm
Forum: MicroPython pyboard
Topic: new usb device class
Replies: 8
Views: 8671

Re: new usb device class

Hi Dave, this is my configuration: #define CCID_BULK_EP_MAX_PACKET 64 #define CCID_INTR_EP_MAX_PACKET 8 #define CCID_BULK_EPIN_SIZE CCID_BULK_EP_MAX_PACKET #define CCID_BULK_EPOUT_SIZE CCID_BULK_EP_MAX_PACKET #define CCID_INTR_EPIN_SIZE CCID_INTR_EP_MAX_PACKET #define CCID_BULK_OUT_EP_WITH_CDC 0x01 ...
by pagano.paganino
Thu Nov 12, 2015 10:10 pm
Forum: MicroPython pyboard
Topic: new usb device class
Replies: 8
Views: 8671

Re: new usb device class

Hi Dave,
for ccid class i need 3 ep, 1 in, 1 out and 1 for int.
hid and msc implementation on pyboard only use 1 for in e 1 for out, where can i find the third ep for int?
Any hint?

Thanks,
Francesco