File tree 1 file changed +5
-5
lines changed 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -170,23 +170,23 @@ int Adafruit_USBD_CDC::dtr(void) {
170
170
return tud_cdc_n_connected (_instance);
171
171
}
172
172
173
- inline bool Adafruit_USBD_CDC::rts (void ) {
173
+ bool Adafruit_USBD_CDC::rts (void ) {
174
174
return tud_cdc_n_get_line_state (_instance) & CDC_CONTROL_LINE_STATE_RTS;
175
175
}
176
176
177
- inline bool Adafruit_USBD_CDC::cts (void ) {
177
+ bool Adafruit_USBD_CDC::cts (void ) {
178
178
return tud_cdc_n_get_serial_state (_instance).cts ;
179
179
}
180
180
181
- inline bool Adafruit_USBD_CDC::dsr (void ) {
181
+ bool Adafruit_USBD_CDC::dsr (void ) {
182
182
return tud_cdc_n_get_serial_state (_instance).dsr ;
183
183
}
184
184
185
- inline bool Adafruit_USBD_CDC::dcd (void ) {
185
+ bool Adafruit_USBD_CDC::dcd (void ) {
186
186
return tud_cdc_n_get_serial_state (_instance).dcd ;
187
187
}
188
188
189
- inline bool Adafruit_USBD_CDC::ri (void ) {
189
+ bool Adafruit_USBD_CDC::ri (void ) {
190
190
return tud_cdc_n_get_serial_state (_instance).ri ;
191
191
}
192
192
You can’t perform that action at this time.
0 commit comments