PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

HW_PIC32.h 173B

il y a 4 ans
1234567
  1. void UTFT::_convert_float(char *buf, double num, int width, byte prec)
  2. {
  3. char format[10];
  4. sprintf(format, "%%%i.%if", width, prec);
  5. sprintf(buf, format, num);
  6. }