mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-30 16:24:09 +03:00
[sam] test app (led blink) working using GCC and GDB server for debug
This commit is contained in:
@ -26,9 +26,12 @@ class UARTClass : public HardwareSerial
|
||||
|
||||
void IrqHandler( void ) ;
|
||||
|
||||
#if defined __GNUC__ /* GCC CS3 */
|
||||
using Print::write ; // pull in write(str) and write(buf, size) from Print
|
||||
#elif defined __ICCARM__ /* IAR Ewarm 5.41+ */
|
||||
virtual void write( const char *str ) ;
|
||||
virtual void write( const uint8_t *buffer, size_t size ) ;
|
||||
// using Print::write ; // pull in write(str) and write(buf, size) from Print
|
||||
#endif
|
||||
};
|
||||
|
||||
#endif // _UART_CLASS_
|
||||
|
Reference in New Issue
Block a user