You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 20, 2023. It is now read-only.
and a standardard build for arduino uno
defining a serial device working at 9600 baudrate I have to use this command to get the serial stdin/stout to work well:
using this patch:
pat1@1a918c7
and a standardard build for arduino uno
defining a serial device working at 9600 baudrate I have to use this command to get the serial stdin/stout to work well:
simulavr -d atmega328 -z -b 9600 -F 32000000 --file mqtt_ethernet.cpp.elf
but the arduino uno board is a board with 16Mhz clock
using:
simulavr -d atmega328 -z -b 9600 -F 16000000 --file mqtt_ethernet.cpp.elf
puts wrong character in the stdout serial monitor
Any suggestions ?