Search found 37 matches

by neilh20
Fri Jan 13, 2017 6:43 pm
Forum: Other Boards
Topic: Teensy 3.5/3.6
Replies: 9
Views: 10526

Re: Teensy 3.5/3.6

Wonderful. I've gotta try this .... see if I can find some time. Thanks for the mention to the Teensy CLI I hadn't seen that https://www.pjrc.com/teensy/loader_cli.html Also BTW a link for Andrew's Usb HOST FS framework that I've got working on a Teensy 3.6 that I believe would be compatible with uP...
by neilh20
Thu Jan 12, 2017 8:55 pm
Forum: Other Boards
Topic: Porting Kinetis MK64F
Replies: 32
Views: 30411

Re: Porting Kinetis MK64F

Hi Dave Happy New year to you. I've got my Teensy3.6 some months ago, and used them to bring up a version of USB Host FS that seems like it could be ported to an Teensy3.6 uP OTG. - https://forum.pjrc.com/threads/28173-Teensy-3-x-NATIVE-USB-HOST-PREVIEW-AVAILABLE/page4 Just wondering if uP/teensy3.6...
by neilh20
Wed Sep 21, 2016 3:27 pm
Forum: Other Boards
Topic: Porting Kinetis MK64F
Replies: 32
Views: 30411

Re: Porting Kinetis MK64F

Wow Nice
https://www.pjrc.com/store/teensy36.html
MK66FX1M0VMD18 ram256k eeprom4k flash1023K 2Otg Vreg 6uarts SDHC8bit 6SPI ADC16+Vref

Look forward to hearing about it and I'll put it in an order for the Teensy3.6
by neilh20
Wed Sep 21, 2016 1:07 am
Forum: Other Boards
Topic: Porting Kinetis MK64F
Replies: 32
Views: 30411

Re: Porting Kinetis MK64F

Hi GalenHz, sorry for not seeing your question. Freescale seemed to have changed the license before they where purchased by Nxp, possibly because of a question I asked about it. So I'd be interested if you have got very far with this. I have been digging into how to have open source USB/OTG Host. OT...
by neilh20
Wed Nov 25, 2015 5:06 pm
Forum: MicroPython pyboard
Topic: Async Uart Tx (same as #1642)
Replies: 2
Views: 4007

Re: Async Uart Tx (same as #1642)

debug buffer: nice idea for the debug buffer that can cope with crashes. I'd be interested in discussing it as well. I'd would modify it so that it also outputs as it goes - so it can be used as a general purpose debug buffer Also, for general system stability testing, I've implemented a per module/...
by neilh20
Wed Nov 25, 2015 12:40 am
Forum: MicroPython pyboard
Topic: Async Uart Tx (same as #1642)
Replies: 2
Views: 4007

Async Uart Tx (same as #1642)

This is an extension to #1642 1533 references UART TX but possibly at "python processing" level. I've been modifying startup code and figuring how the USB OTG features work. The MP USB_FS device startup is some amazing code with the way it handles the serial interface into the REPL - and its a key t...
by neilh20
Tue Nov 24, 2015 6:39 am
Forum: MicroPython pyboard
Topic: How to create USB Host CDC
Replies: 29
Views: 32231

Re: How to create USB Host CDC

Create the changes necessary to support two USB phys at the same time. Currently only one can be invoked at a time - either USB_FS or USB_HS - not both.
by neilh20
Tue Nov 24, 2015 3:13 am
Forum: MicroPython pyboard
Topic: How to create USB Host CDC
Replies: 29
Views: 32231

Re: How to create USB Host CDC

Hi Dave/anybody else. There are some precursors to have two USBs capable of working in the same runtime at the same time, that is both phy's USB_FS and USB_HS at the same time. So far these are stm32_it.c extern PCD_HandleTypeDef pcd_fs_handle; extern PCD_HandleTypeDef pcd_hs_handle; .... #if define...
by neilh20
Tue Nov 24, 2015 2:03 am
Forum: Other Boards
Topic: Porting to STM32F429, where to increase code size?
Replies: 56
Views: 71967

Re: Porting to STM32F429, where to increase code size?

Yup that worked for me. I pulled your stm32f429_integration on to ubuntu, built it with make BOARD=STM32F429DISC I have a miniUSB connected to the F429DISCO STLink I have a microUSB connected to the F429Disco USB_HS port Then started the ST-Link Utility/Windows8, From Target.Connect connected to the...
by neilh20
Fri Nov 20, 2015 11:02 pm
Forum: Other Boards
Topic: Porting to STM32F429, where to increase code size?
Replies: 56
Views: 71967

Re: Porting to STM32F429, where to increase code size?

I'm working on the STM32F429 USB_HS CDC as well. I have a modified STM32Cube_FW_F4_V1.9.0\Projects\STM32F429I-Discovery\Demonstrations\SW4STM32, and got it working with USB_HS HOST CDC. I am currently working at porting it back into pybV10 - story so far , so this is fantastic to see this conversati...