Search found 53 matches

by ta1db
Thu Oct 03, 2019 1:21 pm
Forum: Other Boards
Topic: Nucleo F401RE WiFi Connection
Replies: 15
Views: 8797

Re: Nucleo F401RE WiFi Connection

I found this skin: https://www.tinyosshop.com/wifi-skin-for-pyboard There are several discussions about this skin and about its subclass ESP8266 E-01 in this forum as well. Here in a micropython forum topic Damien recommends https://forum.micropython.org/viewtopic.php?t=4883#p28432 this method as we...
by ta1db
Mon Sep 30, 2019 1:49 pm
Forum: MicroPython pyboard
Topic: working with UART and Bytearrays
Replies: 29
Views: 42393

Re: working with UART and Bytearrays

Test using a loopback (link X1 and X2 on a Pyboard). Worked flawlessly on Nucleo_F401RE as well with a single modification UART 4 -> 6 and with link PC6 to PC7 accordingly. import uasyncio as asyncio - uart = UART(4, 9600) + uart = UART(6, 9600) #or any other valid baudrate Thank you very much.
by ta1db
Mon Sep 30, 2019 9:46 am
Forum: Other Boards
Topic: Nucleo F401RE WiFi Connection
Replies: 15
Views: 8797

Re: Nucleo F401RE WiFi Connection

It's just a matter of writing a loop to send the bytes backwards and forwards as they become available. You should look at pyb.USB_VCP Yes, I am fully agree. Yesterday I made a new build for Nucleo_F401RE as to have _thread module included ( was not existing in official distro) to simplify a full d...
by ta1db
Sun Sep 29, 2019 7:51 pm
Forum: Pyboard D-series
Topic: building for BOARD=PYBD_SF to get _threads compiled in
Replies: 6
Views: 5110

Re: building for BOARD=PYBD_SF to get _threads compiled in

I could also build firmware with _thread module included in the same way ;
By just adding

Code: Select all

// Whether to provide "_thread" module
#ifndef MICROPY_PY_THREAD
#define MICROPY_PY_THREAD (1)
#endif
in mpconfigboard.h of Nucleo_F401RE , STM32F7DISC.
Thanks.
by ta1db
Sun Sep 29, 2019 4:27 pm
Forum: Other Boards
Topic: Nucleo F401RE WiFi Connection
Replies: 15
Views: 8797

Re: Nucleo F401RE WiFi Connection

Hi, For (2), this isn't what you asked for but still maybe useful. Yes, this isn't what I've asked but can be a solution and seems attractive because on this occasion I also get familiar with ESP8266 as well, can be an introduction ! In the meantime I got an ESP8266 E01 wifi module which doesn't ha...
by ta1db
Fri Sep 27, 2019 5:09 am
Forum: Other Boards
Topic: Nucleo F401RE WiFi Connection
Replies: 15
Views: 8797

Nucleo F401RE WiFi Connection

Hi, I would like to implement a wifi connection with Nucleo F401RE board using a cheap wifi module or shield preferable with ESP8266 E-01 . Micropython firmware v1.11-312-g22099ab has network and socket modules, however - as far as I could see - the network module has only a "route" function which i...
by ta1db
Mon Sep 23, 2019 4:47 am
Forum: Other Boards
Topic: STM32 F7 Discovery
Replies: 20
Views: 112743

Re: STM32 F7 Discovery

Please ta1db could you check what version is reported in REPL and test this simple code and look to the last line to see if this effect also happen to you. @mappy My welcome message is same of yours: MicroPython v1.9.3-2150-g3e32db2 on 2019-09-22; F7DISC with STM32F746 However I don't see a problem...
by ta1db
Sun Sep 22, 2019 5:57 pm
Forum: Other Boards
Topic: STM32 F7 Discovery
Replies: 20
Views: 112743

Re: STM32 F7 Discovery

@jimmo git clone -b f7disc-lcd-rebased https://github.com/jimmo/micropython.git cd micropython git submodule update --init cd mpy-cross make cd ../ports/stm32 make BOARD=STM32F7DISC built and worked flawlessly, firmware has both lcdF7D, tchF7D and the latest modules like ssh etc, upip also worked wi...
by ta1db
Sat Sep 21, 2019 8:51 am
Forum: General Discussion and Questions
Topic: Debugger for Micropython
Replies: 13
Views: 19489

Re: Debugger for Micropython

Can you post a corrected version, if that might be useful to other people reading this thread. Okay, Official website for OpenOCD (Open On Chip Debugger) is: http://openocd.org/ Version 0.10.0 is available here: https://sourceforge.net/projects/openocd/files/openocd/0.10.0/ Windows users may prefer...
by ta1db
Fri Sep 20, 2019 2:50 pm
Forum: General Discussion and Questions
Topic: A call to help me learn code the right way on MicroPhyton
Replies: 10
Views: 7181

Re: A call to help me learn code the right way on MicroPhyton

One small step... :-) This small step is very important ! Congratulations... BTW of course I did something extra on top of that code such as: rshell #you have to create a /flash/lib directory first cp upip.py /flash/lib cp upip_utarfile.py /flash/lib repl import network lan=network.LAN() lan.active...