Hello,
I have a Espruino board v 1.3 and I'm using the SD card and Uarts 1 to 4 already but I still need to use one more uart. So my plan is to use uart5/serial5 but that shares a pin with the SD (CS) so my initial thought was to setup serial5 to different pins.
So I tried to set up Serial5 to two of my available pins (B1 and B0) as
Serial5.setup(9600,{rx:B1,tx:B0});
but it does not seem to work.
Do I need to recompile the firmware to assign serial5 to B1 and B0?
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
Hello,
I have a Espruino board v 1.3 and I'm using the SD card and Uarts 1 to 4 already but I still need to use one more uart. So my plan is to use uart5/serial5 but that shares a pin with the SD (CS) so my initial thought was to setup serial5 to different pins.
So I tried to set up Serial5 to two of my available pins (B1 and B0) as
Serial5.setup(9600,{rx:B1,tx:B0});
but it does not seem to work.
Do I need to recompile the firmware to assign serial5 to B1 and B0?
Any info is appreciated.
Thx