Page 1 of 1

PYBStick ESP32-C3 : Utiliser l'UART1

Posted: Mon 14 Nov 2022 11:51
by Dominique
UART0 semble ne pas pouvoir être utilisé sur les GPIO 20 et 21.

Le code suivant produit une erreur:

Code: Select all

The issue is that i can't use this available UART0 to dialog with for example a sensor. I've got error with that code.
>>> from machine import UART
>>> uart0=UART(0, baudrate=9600, tx=21, rx=20)
>>> uart0.write('toto')
>>> uart0.read(4)
Par contre il est possible de monter l'UART1 sur ces même broches et cela fonctionne parfaitement!

Code: Select all

The issue is that i can't use this available UART0 to dialog with for example a sensor. I've got error with that code.
>>> from machine import UART
>>> uart0=UART(1, baudrate=9600, tx=21, rx=20)
>>> uart0.write('toto')
>>> uart0.read(4)
Merci Fred :-)

Re: PYBStick ESP32-C3 : Utiliser l'UART1

Posted: Tue 15 Nov 2022 10:59
by fpie
De rien, j'aurais pu essayer plus tôt. Vivement quand même d'avoir 2 uarts dispo sur cette plateforme ;)