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