CombiesGit
CombiesGit
original: > return '\0'; hmmm...: > return NULL; better: > return nullptr;
`void setup() { sysctl_cpu_set_freq(F_CPU); } void loop() { }` Are there any side effects? I dont know.
None analog input pin exist! See wiring.c `uint32_t analogRead( uint32_t ulPin ) { #if (defined(BOARD_SIPEED_MAIX_GO) || defined(BOARD_SIPEED_MAIX_ONE_DOCK) ) return 0; #endif }` analogRead() is a dummy function.
Ahh, The analog pins are owned by ESP not by K210.
After update from 1.8.5 to 1.8.6 The problem still persists.