diff options
author | Cristian Maglie <c.maglie@bug.st> | 2012-12-17 16:53:45 +0100 |
---|---|---|
committer | Cristian Maglie <c.maglie@bug.st> | 2012-12-17 16:53:45 +0100 |
commit | 5f4e55a3d274838388696c3f8130b0f2dc40daf7 (patch) | |
tree | 066cb0ff68142acbfe9cc4a45ec0ef596ff93919 /libraries | |
parent | bb9cc4f70c17eed497ab30d7bfe6eebb35055205 (diff) | |
parent | 09b755fb9c3f5c42fa9b38ffeef0dbfa2cfd8315 (diff) |
Merged 1.0.4 pre-release into 1.5
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/Esplora/examples/EsploraTable/EsploraTable.ino | 22 | ||||
-rw-r--r-- | libraries/Ethernet/Dhcp.cpp | 1 | ||||
-rw-r--r-- | libraries/Ethernet/Ethernet.cpp | 3 |
3 files changed, 11 insertions, 15 deletions
diff --git a/libraries/Esplora/examples/EsploraTable/EsploraTable.ino b/libraries/Esplora/examples/EsploraTable/EsploraTable.ino index 73d5652..712dffa 100644 --- a/libraries/Esplora/examples/EsploraTable/EsploraTable.ino +++ b/libraries/Esplora/examples/EsploraTable/EsploraTable.ino @@ -1,17 +1,16 @@ /* Esplora Table - Acts like a keyboard that prints some of its sensors' + Acts like a keyboard that prints sensor data in a table-like text, row by row. - It is a sort of "data-logger". - At startup, it does nothing. It just waits for you to open a - spreadsheet (e.g. Google Drive spreadsheet) so it can put its - data. Then, by pressing Switch 1, it starts printing the table + At startup, it does nothing. It waits for you to open a + spreadsheet (e.g. Google Drive spreadsheet) so it can write + data. By pressing Switch 1, it starts printing the table headers and the first row of data. It waits a bit, then it will print another row, and so on. - The amount of time between each row is given by the slider. + The amount of time between each row is determined by the slider. If put to full left, the sketch will wait 10 seconds; at full right position, it will wait 5 minutes. An intermediate position will make the sketch wait for some time in-between. @@ -175,17 +174,12 @@ void logAndPrint() { } /** - * Similar to delay(), but allows to do something else - * in the meanwhile. In particular, it calls waitLoop(). + * Similar to delay(), but allows the program to do something else + * in the meanwhile. In particular, it calls checkSwitchPress(). * Note 1: it may wait longer than the specified amount, not less; * Note 2: beware of data synchronization issues, e.g. if the - * whileWaiting() function alters some variables used by the + * activeDelay() function alters some variables used by the * caller of this function. - * - * I discovered by chance that there's an ongoing discussion about - * adding yield() in the Arduino API: - * http://comments.gmane.org/gmane.comp.hardware.arduino.devel/1381 - * The purpose is the same, but for now I'm using this implementation. */ void activeDelay(unsigned long amount) { unsigned long at = millis() + amount; diff --git a/libraries/Ethernet/Dhcp.cpp b/libraries/Ethernet/Dhcp.cpp index e4d27f7..56d5b69 100644 --- a/libraries/Ethernet/Dhcp.cpp +++ b/libraries/Ethernet/Dhcp.cpp @@ -43,6 +43,7 @@ int DhcpClass::request_DHCP_lease(){ _dhcpTransactionId = random(1UL, 2000UL);
_dhcpInitialTransactionId = _dhcpTransactionId;
+ _dhcpUdpSocket.stop();
if (_dhcpUdpSocket.begin(DHCP_CLIENT_PORT) == 0)
{
// Couldn't get a socket
diff --git a/libraries/Ethernet/Ethernet.cpp b/libraries/Ethernet/Ethernet.cpp index 5d28f71..c31a85f 100644 --- a/libraries/Ethernet/Ethernet.cpp +++ b/libraries/Ethernet/Ethernet.cpp @@ -10,7 +10,8 @@ uint16_t EthernetClass::_server_port[MAX_SOCK_NUM] = { int EthernetClass::begin(uint8_t *mac_address) { - _dhcp = new DhcpClass(); + static DhcpClass s_dhcp; + _dhcp = &s_dhcp; // Initialise the basic info |