GRBL-Advanced/Libraries/Printf/Print.h

28 wiersze
359 B
C
Czysty Zwykły widok Historia

2017-05-30 22:12:10 +00:00
#ifndef PRINT_H_INCLUDED
#define PRINT_H_INCLUDED
2020-04-15 18:26:40 +00:00
#include <stdint.h>
2017-05-30 22:12:10 +00:00
#ifdef __cplusplus
extern "C" {
#endif
void Printf_Init(void);
2017-05-30 22:12:10 +00:00
int Printf(const char *str, ...);
void Printf_Float(float n, uint8_t decimal_places);
2017-05-30 22:12:10 +00:00
int8_t Getc(char *c);
int Putc(const char c);
void Printf_Flush(void);
2017-05-30 22:12:10 +00:00
#ifdef __cplusplus
}
#endif
#endif /* PRINT_H_INCLUDED */