AlexGyver / GyverCore

Быстрое ядро для Arduino IDE
https://alexgyver.ru/gyvercore/
GNU Lesser General Public License v3.0
127 stars 13 forks source link

sprintf отсутствует в сборке с Serial: GyverUART #27

Open zhekaus opened 2 years ago

zhekaus commented 2 years ago

Не нашёл в документации предупреждение об отсутствии sprintf в ядре.

GyverLibs commented 2 years ago

Sprintf вроде бы живёт в компиляторе

zhekaus commented 2 years ago

Этот код при выбранном Serial: GyverUART... выдает ошибку "error: 'sprintf' was not declared in this scope":

void setup() {
  char buf_str[32];
  sprintf(buf_str, "%d", 0);
}

void loop() {}

Да, можно самому добавить #include <stdio.h>

GyverLibs commented 2 years ago

ну вот, подключил либу и вперёд