I build a K3NG Keyer with ARDUINO_GENERIC_STM32F103C.
I noticed command buttons 1-3 are not working. (Only "Button - 0" is working).
This issue caused because the range of AnalogRead() was different.
So, I fixed the range of "max_value" in "buttonarray.h"
if defined(ARDUINO_ARCH_ESP32)
#define max_value 4095
else
#define max_value 1023
endif
↓
if defined(ARDUINO_ARCH_ESP32) || defined(ARDUINO_GENERIC_STM32F103C)
I build a K3NG Keyer with ARDUINO_GENERIC_STM32F103C. I noticed command buttons 1-3 are not working. (Only "Button - 0" is working). This issue caused because the range of AnalogRead() was different. So, I fixed the range of "max_value" in "buttonarray.h"
↓