mirror of
https://github.com/arduino/Arduino.git
synced 2025-02-20 14:54:31 +01:00
parent
500a3fdbe7
commit
1c76ee9d7c
@ -17,6 +17,7 @@ ARDUINO 1.6.9
|
||||
* Fixed Ctrl+Del: now deletes the word behind the cursor instead of the entire line. Thanks @avargas-nearsoft
|
||||
|
||||
[core]
|
||||
* String class now supports iterators. Thanks @Chris--A
|
||||
* sam: Allow 3rd party boards that depend on SAM core to use their own
|
||||
USB vid/pid and manufacturer/product strings. Thanks @philmanofsky.
|
||||
* avr: Check at runtime if 32u4 boards are shipped with new bootloader; if so
|
||||
|
@ -161,6 +161,8 @@ public:
|
||||
void toCharArray(char *buf, unsigned int bufsize, unsigned int index=0) const
|
||||
{getBytes((unsigned char *)buf, bufsize, index);}
|
||||
const char * c_str() const { return buffer; }
|
||||
const char* begin() { return c_str(); }
|
||||
const char* end() { return c_str() + length(); }
|
||||
|
||||
// search
|
||||
int indexOf( char ch ) const;
|
||||
|
Loading…
x
Reference in New Issue
Block a user