File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed
cores/arduino/Adafruit_TinyUSB_Core/tinyusb/src/class/cdc Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,6 @@ static inline uint32_t tud_cdc_read (void* buffer, uint32_t bufsize);
82
82
static inline void tud_cdc_read_flush (void );
83
83
static inline bool tud_cdc_peek (int pos , uint8_t * u8 );
84
84
85
- static inline uint32_t tud_cdc_write_char (char ch );
86
85
static inline uint32_t tud_cdc_write (void const * buffer , uint32_t bufsize );
87
86
static inline uint32_t tud_cdc_write_str (char const * str );
88
87
static inline bool tud_cdc_write_flush (void );
@@ -168,11 +167,6 @@ static inline bool tud_cdc_peek (int pos, uint8_t* u8)
168
167
return tud_cdc_n_peek (0 , pos , u8 );
169
168
}
170
169
171
- static inline uint32_t tud_cdc_write_char (char ch )
172
- {
173
- return tud_cdc_n_write_char (0 , ch );
174
- }
175
-
176
170
static inline uint32_t tud_cdc_write (void const * buffer , uint32_t bufsize )
177
171
{
178
172
return tud_cdc_n_write (0 , buffer , bufsize );
You can’t perform that action at this time.
0 commit comments