Search found 3 matches

by aziubin
Sun Mar 14, 2021 3:10 pm
Forum: Development of MicroPython
Topic: NUCLEO-L476RG firmware has only UART2 defined
Replies: 2
Views: 2578

Re: NUCLEO-L476RG firmware has only UART2 defined

Thank you, I defined all available UARTs as you suggested, which work wihtout errors in python script. Can you please also help me with LPUART configuration? I found existing LPUART configuration for NUCLEO-WB55 ( https://github.com/micropython/micropython/blob/dcaf702578045299d5bc007d81669fe1ba6406...
by aziubin
Sun Mar 14, 2021 1:23 pm
Forum: General Discussion and Questions
Topic: Benchmark comparison of MicroPython boards
Replies: 18
Views: 29347

Re: Benchmark comparison of MicroPython boards

STMicroelectronics NUCLEO-L476RG board: MPY: sync filesystems MPY: soft reboot MicroPython v1.14-82-gcdaec0dca-dirty on 2021-02-27; NUCLEO-L476RG with STM32L476RG Type "help()" for more information. >>> import pyb >>> print(pyb.freq()) (80000000, 80000000, 80000000, 80000000) >>> import os >>> prin...
by aziubin
Fri Feb 26, 2021 12:17 pm
Forum: Development of MicroPython
Topic: NUCLEO-L476RG firmware has only UART2 defined
Replies: 2
Views: 2578

NUCLEO-L476RG firmware has only UART2 defined

Hello, I have loaded MicroPython firmware to my NUCLEO- L476 RG board, which has several UART units available. Unfortunately MicroPython firmware only defines single UART currently: // UART config #define MICROPY_HW_UART2_TX (pin_A2) #define MICROPY_HW_UART2_RX (pin_A3) #define MICROPY_HW_UART_REPL ...