[PR #1357]
Expands the device code from 4 digits to 6 digits for Photon/P1/Electron platforms
[PR #1346]
[Fixes #1344]
[Photon/P1]
When usingSYSTEM_THREAD(ENABLED)
the TCPServer and WPA Enterprise connections were broken.[PR #1354]
[Fixes #1062]
A call toWiFi.scan()
when Wi-Fi module is off or not ready was resulting in a hard fault.[PR #1357]
[Fixes #1348]
SoftAP SSID was not respecting the string's null terminator, 2 char SSID would appear as 4.[PR #1355]
When using WPA Enterprise access point and constantly reconnecting to it, heap was becoming fragmented which resulted in inability to connect to the access point anymore. Also reduced overall heap usage.
[PR #1342]
Removed thefirmware-docs
subtree from thefirmware
repo. Docs updates are made directly todocs
repo again.[PR #1352]
Added test forRGB.onChange()
handler leak[PR #1358]
Updates minimal ARM gcc version required to 5.3.1[PR #1359]
Fixes build withPLATFORM=gcc
on OSX with clang's gcc wrapper
[PR #1245]
Particle.publish()
now able to use Future API[PR #1289]
[Implements #914]
[Photon/P1]
WPA/WPA2 Enterprise support added (PEAP/MSCHAPv2 and EAP-TLS)! [Photon/P1] Automatic cipher/security detection when configuring WiFi settings over Serial.
[PR #1242]
[Photon/P1/Electron]
DFU transfer speeds increased! v100 bootloader is now 41% faster than v7 and 60% faster than the latest v11.[PR #1236]
[Fixes #1201]
[Fixes #1194]
Added type-safe wrapper for enum-based flags forParticle.publish()
which enables logical OR'ed flag combinationsPRIVATE | WITH_ACK
[PR #1247]
Adds error checking toWiFi.setCredentials()
, will returntrue
if credentials has been stored successfully, orfalse
otherwise.[PR #1248]
Added an overload tomap()
function that takesdouble
arguments.[PR #1296]
[Photon/P1]
Added support for setting a custom DNS hostname, default is device ID.[PR #1260]
[Implements #1067]
Adds ability to interrupt the blinking cyan cloud connection with the SETUP/MODE button.[PR #1271]
[Implements #1180]
[Photon/P1]
ConstrainsWiFi.RSSI()
to -1dBm max.[PR #1270]
Removesspark/device/ota_result
event and instead sends OTA'd module info as a payload in UpdateDone message, or as an ACK to UpdateDone.[PR #1300]
Restores public server key and server address if missing[PR #1325]
Use backup registers instead of DCT to store system flags to avoid chance of a DCT corruption.[PR #1306]
Bootloader module dependency and integrity checks have been added to system-part2. If they fail, the device is forced into safe mode and a new bootloader will be OTA transferred to the device.[PR #1329]
Adds a verification and retry scheme to the bootloader flashing routine.[PR #1330]
[Electron]
Added CRC checking to the Electron DCD implementation so that write errors are detected. Added a critical section around flash operations and around DCD operations to make them thread safe.[PR #1307]
[Photon/P1]
New version of WICED adds CRC checking to the DCT implementation so that write errors are detected. Added a critical section around flash operations and around DCT operations to make them thread safe.[PR #1269]
[Closes #1165]
Cloud connection can be closed gracefully allowing confirmable messages to reach the cloud before the connection is terminated
[PR #1246]
Fixes possible corruption of event data in multi-threaded firmware[PR #1234]
[Fixes #1139]
[Electron]
spark/hardware/max_binary
event was sent in error, adding 69 more bytes of data to handshake (full or session resume). Also fixes other preprocessor errors.[PR #1236]
[Fixes #1201]
[Fixes #1194]
SanitizedParticle.publish()
overloads.[PR #1237]
Fixes potential memory leak and race condition issues inRGB.onChange()
function.[PR #1247]
Previously no null pointer checks on password argument ofWiFi.setCredentials()
.[PR #1248]
[Fixes #1193]
Fixes divide by zero on incorrect parameters ofmap()
function.[PR #1254]
[Fixes #1241]
WiFi.connecting()
was returningfalse
while DHCP is resolving, will now remaintrue
.[PR #1296]
[Fixes #1251]
[Photon/P1]
Default Wi-Fi DNS hostname changed to device ID, to avoid spaces in name which may cause issues.[PR #1255]
[Fixes #1136]
[Core]
Interrupts were disabled by default.[PR #1259]
[Fixes #1176]
MakesSystem.sleep(mode, seconds)
a synchronous operation in multithreaded firmware. This ensures the device is in a well-defined state before entering sleep mode.[PR #1315]
Fixes Particle Publish flag implicit conversion issue. e.g.Particle.publish("event", "data", NO_ACK);
was previously changing event's TTL instead disabling acknowledgement of the event)[PR #1316]
Fixes LED indication when network credentials are cleared by holding the SETUP button for >10 seconds.[PR #1270]
[Fixes #1240]
TCP Firmware will not ACK every chunk in Fast OTA mode now.[PR #1302]
[Fixes #1282]
[Electron]
Wire1
was not working correctly.[PR #1326]
Renamedsystem_error
enum tosystem_error_t
to avoid conflicts withstd::system_error
class.[PR #1286]
Improves stability of TCP server implementation: 1) Update server's list of clients on a client destruction (thanks @tlangmo!), 2) TCPClient now closes underlying socket on destruction.[PR #1327]
[Fixes #1098]
[Photon/P1] Previously, when entering Sleep-stop mode:System.sleep(D1, RISING, 60);
while in the process of making a Wi-Fi connection resulted in some parts of the radio still being initialized, consuming about 10-15mA more than normal.[PR #1336]
Fixes an issue with Serial when receiving consecutive multiple 64-byte transmissions from Host[PR #1337]
Fixed system attempting to enter listening mode every 1ms when the SETUP button is pressed.[PR #1289]
Fixes a stack overlap with system-part2 static RAM on Photon/P1[PR #1289]
Fixes a memory leak when Thread is terminated[PR #1289]
Fixes a deadlock in SoftAP, when connection is terminated prematurely[PR #1340]
[Electron]
Fixes the monolithic build
[PR #1313]
Compilation fixes for GCC platform[PR #1323]
USB vendor requests should be executed on system thread instead of being processed in ISR.[PR #1338]
Do not read or write feature flags from an ISR
- [PR #1311]
[Implements CH1537] [Electron]
Added support for Twilio SIMs by default in system firmware.
- [PR #1310] Fixes a error when
<algorithm>
has already been included before themath.h
header. Now we only includemath.h
when Arduino compatibility is requested. (math.h was not included in 0.6.0).
- [PR #1283] [Implements #1278] Restores 0.6.0-style Arduino compatibility by default, full Arduino compatibility when including Arduino.h
- [PR #1225] [Photon/P1/Electron] Added support for custom LED colors in bootloader v11 (Safe Mode, DFU Mode, Firmware Reset).
- [PR #1227] [Implements #961] [Electron] Added new API for hostname IP address lookup
IPAddress ip = Cellular.resolve(hostname)
- [PR #1216] Improved Arduino Compatibility (now supported by default, added PARTICLE_NO_ARDUINO_COMPATIBILITY=y command line option for disabling)
- [PR #1217] Added Windows, Mac command, & Unix/Linux meta USB keyboard scancode definitions.
- [PR #1224] Allow the compiler to garbage collect USBKeyboard and USBMouse implementations if they are not used in user code, saving flash space.
- [PR #1225] [Photon/P1/Electron] Combined
LEDStatus
andLEDCustomStatus
into a single class ->LEDStatus
- [PR #1221] [Fixes #1220] [Electron] TIM8 PWM pins (B0, B1) did not work correctly in bootloader with
RGB.mirrorTo()
- [PR #1222] Fixed bug in
String(const char* str, int len)
constructor when the string is longer than the specified length. - [PR #1225] [Photon/P1/Electron] Fixed LED indication shown during device key generation (blinking white) introduced in 0.6.1-rc.1
- [PR #1226] [Fixes #1181] [Photon/P1/Core] Process TCP
DESCRIBE
properly and return only one response, SYSTEM, APPLICATION, or COMBINED (ALL) describe message. Was sending separate SYSTEM and APPLICATION previously. - [PR #1230] Safe Mode event was being published unconditionally introduced in 0.6.1-rc.1
- [PR #1231] [Electron] fixes double newline parser issue on G350 introduced in 428835a 0.6.1-rc.1
- [PR #1190] [Implements #1114] Added ability to mirror MODE/SETUP button to any GPIO, available from time of boot, active high or low.
- [PR #1182] [Fixes #687] [Docs] Added
WiFi.set|getListenTimeout()
|Cellular.set|getListenTimeout()
to override the automatic new Listening Mode timeout (Wi-Fi = no timeout by default, Cellular = 5 minute timeout by default). - [PR #1154] Added
low_battery
system event, which is generated when low battery condition is detected. This is when the battery falls below the SoC threshold (default 10%, max settable 32%). The event can only be generated again if the system goes from a non-charging to charing state after the event is generated. The event doesn't carry any data. - [PR #1144] Added tracking of ACKs for published events (see
WITH_ACK
flag forParticle.publish()
) - [PR #1135] [Fixes #1116] [Fixes #965] New Time API's!
Time.isValid()
|Particle.syncTimePending()
|Particle.syncTimeDone()
|Particle.timeSyncedLast()
- [PR #1127] [PR #1213] Added support for runtime logging configuration, which allows to enable logging on already running system via USB control requests. Disabled by default to save flash memory space. (note: this feature is not fully baked with tool support)
- [PR #1120] [Implements #1059] [P1] Added extra spare pin to P1 (P1S6) with GPIO and PWM support.
- [PR #1204] [Implements #1113] RGB LED pins can be mirrored to other PWM capable pins via
RGB.mirrorTo()
. Common Anode/Cathode LED and Bootloader compatible. See PR for usage. - [PR #1205] [Closes #569] [Closes #976] [Closes #1111] By implementing a centralized LED service and theme "engine" for system LED signaling, giving users the ability to apply custom LED colors and patterns for system events.
- [PR #1191] Added more Arduino Library compatibility
- [PR #1188] [Implements #1152] Added SPI API's:
SPISettings
|SPI.beginTransaction()
|SPI.endTransaction()
- [PR #1169] Updated system communication logging with new logging API
- [PR #1160] [Electron] Modem USART paused via HW_FLOW_CONTROL (RTS) before going into sleep with SLEEP_NETWORK_STANDBY. Receives and buffers small messages while system sleeping.
- [PR #1159] [Closes #1085] [Closes #1054] Added support for GCC 5.4.x
- [PR #1151] [Closes #977] Added System events for cloud/network connection state changes
- [PR #1122] Attach to host even if Serial, USBSerial1 and Keyboard/Mouse are disabled, so that "Control Interface" that receives vendor requests is still accessible.
- [PR #1097] [Implements #1032] When flashing (OTA/YModem) an invalid firmware binary (that the device ignores) it will post an event describing why the binary was not applied.
- [PR #1203] [PR #1212] Automatic bootloader updates have returned to the Electron. v9 bootloader has been added to firmware release >=0.6.1-rc.1 for Photon/P1/Electron. After updating your system firmware, a new v9 bootloader will be applied to your device if required. v9 includes support for SETUP/MODE button and RGB LED mirroring at the bootloader level of operation. Also included are updates to USB DFU mode so that Windows users do not need to install separate drivers via Zadig. Bootloader GREEN and WHITE LED flashing speeds (Firmware Reset modes) are faster now as well (you won't see these unless you have loaded user firmware to the Backup location).
- [PR #1125] Breaks on-going network connection when Sleep stop mode is called, thereby speeding up the time to entering sleep when using SYSTEM_THREAD(ENABLED).
- [PR #1186] Fixed issue where USB
Serial
might deadlock when interrupts are disabled while usingDEBUG_BUILD=y
- [PR #1179] [Fixes #1178] [Fixes #1060] [Electron] Bootloader build was failing, fixed and added to CI.
- [PR #1158] [Fixes #1133] [Electron] Before sleeping, now waits for server sent confirmable messages to be acknowledged, in addition to previous behavior of device generated confirmable messages being acknowledged. Reduces data usage.
- [PR #1156] [Fixes #1155] System.sleep(30) wasn't reapplying power to the network device after set time.
- [PR #1147] [Electron] Fixed approx. -0.1V offset on FuelGauge().getVCell() readings
- [PR #1145] [Fixes #973]
Particle.connect()
now blocksloop()
from running untilParticle.connected()
istrue
in single threaded SEMI_AUTOMATIC mode. - [PR #1140] [Fixes #1138] [Fixes #1104] [Electron] Fixed modem USART and buffer handling
- [PR #1130] Particle.subscribe() used with same events but changing scope between PUBLIC and PRIVATE or vice versa would potentially result in non-registered subscriptions. This was also crashing the GCC virtual device with a segfault when subscription checksums were calculated.
- [PR #1196] Re-enable GNU extensions for libc globally. Fixes build with ARM GCC 4.9.3 Q1.
- [PR #1189] Typo caused a warning during compilation in wiring/no_fixture Cellular tests.
- [PR #1184] [Electron] moved cellular HAL and its direct dependencies from module 2 to module 3 to free up space (this is system-part3 was reduced in size, while system-part1 was increased)
- [PR #1167] [Fixes #1036] [GCC Virtual Device] workaround for 100% CPU usage problem.
- [PR #1146] [Closes #1040] Added asserts for checking that network calls are run on system thread.
- [PR #1134] [GCC Virtual Device] Error in socket_hal's socket_receive() logic caused random cloud connection errors.
- Consecutive HID reports were overwriting previous the report before it was delivered to the host. Fixes #1090.
- Disabling multiple USB configurations (normal/high power) as this breaks composite driver on Windows. Fixes #1089 Serial and USBSerial1 not working at same time on Windows 8.1 Pro.
- Do not run the event loop from delay() when threading is enabled. Fixes #1055
- Cancel current connection attempt before entering the listening mode with WiFi.listen(true) and also WiFi.off(). Fixes #1013
- Removed hardcoded server IP that was used when DNS resolution fails. Instead, the cloud connection is failed and the system will have to retry. This means DNS lookup failure is now consistent with other modes of connection failure. Addresses #139 Related to #1024
UDP.flush()
andTCP.flush()
now conform to theStream.flush()
behavior from Arduino 1.0 Wiring. The current (correct) behavior is to wait until all data has been transmitted. Previous behavior discarded data in the buffer. #469
- Logging library for flexible system and application logging. Docs
- [Electron] Reduced data consumption connecting to the cloud with deep sleep. (See the Docs for how to gain the full data reduction.) #953
- Can set Claim Code via the Serial interface (for use by the CLI.) #602
- Device ID available via dfu-util. #949
- [Electron] Firmware Reset now available. #975 and Docs
- System Reset Reason #403 Docs
- [Photon/Electron/P1] Composite USB device driver with HID Mouse & Keyboard implementation for STM32F2 #902 and #528
- Exposes Device ID and Bootloader Version through USB descriptors while in DFU mode, Microsoft WCID support #1001
- USB vendor-specific setup request handling #1010
- [Electron] now allows OTA bootloader updates #1002
- Added Daylight Saving Time support #1058 per proposed #211 Docs
- Local build warns if crc32 is not present. #941
- [Photon/Core] MAC address is available immediately after
WiFi.on()
#879 - [virtual device] support for TCP Server #1000
- [virtual device] support for EEPROM emulation #1004
- Low-level RTOS queues exposed in HAL #1018
- USART LIN bus support. #930 Docs
- USART added support for 7E1, 7E2, 7O1, 7O2 modes. #997 Docs
- Configurable resolution for analogWrite (PWM and DAC) #991 analogWrite() Docs | analogWriteResolution() Docs | analogWriteMaxFrequency() Docs
- System flag
SYSTEM_FLAG_RESET_NETWORK_ON_CLOUD_ERRORS
to control if the device resets the network when it cannot connect to the cloud. #946 - [Photon] 1KB system backup memory added (same size as Electron) reducing user backup memory to 3KB (3068 bytes) #1046
- Automatically adds vendored libraries from the
lib
directory for extended application projects #1053 - Extended spi_master_slave tests with SPI_MODE0/1/2/3 and MSBFIRST/LSBFIRST testing #1056
- [Electron] System parts reordered from 3,1,2 to 1,2,3 to preserve logical flashing order for OTA/YModem when upgrading. #1065
- SoftAP mode persisting when setup complete if Wi-Fi was off. #971
- Free memory allocated for previous system interrupt handler #951 fixes #927
- Fixes to I2C Slave mode implementation with clock stretching enabled #931
millis()
/micros()
are now atomic to ensure monotonic values. Fixes #916, #925 and #1042- availableForWrite() was reporting bytes available instead of bytes available for write #1020 and #1017
digitalRead()
interferes withanalogRead()
#993- USART 9-bit receiving. #968
- Fix soft AP suffix broken by the addition of device id in DCT #1030
- WKP pin should not be enabled as a wakeup source unconditionally for STOP mode #948 and #938
- General I2C Improvements and MCP23017 tests #1047
- Rebuilt Wiced_Network_LwIP_FreeRTOS.a WWD_for_SDIO_FreeRTOS.a on OSX #1057 fixes Local build stalling on object dump #1049
- Validates that module dependencies would still be satisfied after the module from the "ota_module" location is flashed (via OTA or YMODEM flashing) #1063
- System.sleep SLEEP_MODE_DEEP timing accuracy and sleep STOP mode retains user interrupt handler after resuming #1051 fixes #1043 and #1029
- [Electron] Use floating point arithmetic in PWM to save about 1KB of flash space #1027
- Feature/vendorlibraries #1009
- [Electron] Added a 3rd system module to provide room for additional system firmware #1035
- Remove accidental SYSTEM_MODE(MANUAL) from pwm.cpp in wiring/no_fixture #1052
- Automatically adds vendored libraries from the
lib
directory for extended application projects #1053
- Feature/vendorlibraries #1009
- DTR/RTS support (open/closed detection:
Serial.isConnected()
). #1073
- [Electron] System firmware is now aware of system-part3 to allow OTA/YModem upgrade from >=0.5.3-rc.2 to >=0.6.0-rc.1
- added HAL_IsISR() which is used to skip calling the background loop from delay(). fixes #673
- Fixes an issue of USB Serial erroneously switching to closed state. #1073
- RTC wakeup time now calculated right before entering SLEEP_MODE_DEEP. Fixes #1043
- STOP mode should retain user interrupt handler. Fixes #1029
- SoftAP mode persisting when setup complete if Wi-Fi was off. #971
- Free memory allocated for previous system interrupt handler #951 fixes #927
- availableForWrite() was reporting bytes available instead of bytes available for write #1020 and #1017
millis()
/micros()
are now atomic to ensure monotonic values. Fixes #916, #925 and #1042- Fixes to I2C Slave mode implementation with clock stretching enabled #931
- General I2C Improvements and MCP23017 tests #1047
- Rebuilt Wiced_Network_LwIP_FreeRTOS.a WWD_for_SDIO_FreeRTOS.a on OSX #1057 fixes Local build stalling on object dump #1049
digitalRead()
interfered withanalogRead()
#1006 fixes #993- Validates that module dependencies would still be satisfied after the module from the "ota_module" location is flashed (via OTA or YMODEM flashing) #1063
- [Photon/P1] Restores the default WICED country to Japan #1014
- .syncTime() and .unsubscribe() called on the system thread. Prevents issues when multiple threads try to send messages through the cloud connection or manage the network state shared memory. #1041
- [Electron] Added support in HAL for a SMS received callback handler.
- Wi-Fi Country Code can be set to configure the available channels and power transmission. #942
- ARM GCC 5.3.1 compiler support
- [Photon/P1] Fix a timing-critical bug in WICED that causes system freeze. #877
- Tone not available on A7 after stop-mode sleep. #938
- Regression in EEPROM emulation size. #983
- [Electron] Wrong bitmask is provided for 4208 setting in power management #987
- Added SYSTEM_FLAG_WIFITEST_OVER_SERIAL1 which is disabled by default. Tinker enables this by default so that the Wi-Fi Tester is available during manufacturing. Also ensures TX/RX pins are not used for Serial1 by default, in case you want to use these as GPIO. 945
- Timer::isActive() function added #950
- mbedtls headers are private to the communications module now, so user applications can include their own version of mbedtls
- Soft AP Claim code fix #956
- Variable template fix #952
- TCPClient on Electron not receiving all of the data for small files #896
- [Electron] SYSTEM_THREAD() is supported (in Beta) #884
- [Electron] Cellular Data Usage API #866
- [Electron] Configurable keep-alive ping #913
- [Electron] Cellular Band Select API #891
- [Electron] Cellular Local IP API #850
- [Photon/Electron] Stack overflow detection with SOS code 13-blinks
- [Photon/Electron] SPI Slave support #882
- Atomic writes in EEPROM emulation #871
- Software Watchdog #860
- Serial.availableForWrite() and Serial.blockOnOverrun() #798
- [Photon] SoftAP HTTP server can serve application pages. #906
- Compiler error with variable/function names that are too long. #883
- DFU writes are verified #870
- [Electron] NO_ACK flag on
Particle.publish()
disables acknoweldgements reducing data use #862 - [Electron] Allow session to resume when IP changes. #848
- [Electron] Ensure published events are received by the cloud before sleeping. #909
- [Electron] SLEEP_NETWORK_STANDBY on System.sleep() #845
- Serial baudrate to select ymodem mode includes listening mode #912
- Wi-Fi connection process forced to timeout after 60 seconds if unsuccessful #898
- Added write-verify-retry-fail logic to DFU writes #870
- Support for USART (Serial1/2/4/5) data bits, parity and stop bits #757
- targets
program-cloud
,program-dfu
can be used without requiringall
and will built the firmware correctly. #899 - [Electron] Free socket when the socket is closed remotely #885
- Extended CAN filters #857
- I2C does not ensure a stop condition completes correctly in endTransmission #856
- DAC1/2 possible problem with
digitalWrite()
afteranalogWrite()
#855 - Servo HAL: Do not disable timer if some of its channels are still in use #839
- USB driver fixes and Serial.available() not returning values greater than 1 #812 #669 #846 #923
- SOS During
WiFi.scan()
#651
- dynalib: compile-time check for certain types of ABI breaking changes #895
- Support for CAN Bus #790
- blockOnOverrun() on hardware serial to allow applications to disable the default flow control.
- availableForWrite() on hardware serial to allow applications to implement flow control. #798
- WiFi.BSSID() to retrieve the 6-byte MAC address of the connected AP. #816
- attachInterrupt() configurable interrupt priority #806
- Time.local() retrieves the current time in the configured timezone. #783
- [photon] WiFi.getCredentials() lists configured credentials. #759
- variable frequency PWM via analogWrite(pin,value,hz) #756
- ATOMIC_BLOCK() and SINGLE_THREADED_BLOCK() declarations for atomicity and thread scheduling control. #758
- API for Guarding resources for use between threads.
- System events for individual button clicks and a run of button clicks. #818
- System.freeMemory() shows an accurate value for free memory rather than the highwater mark for the heap.
- [threading] Entering listening mode does not block the system thread. #788
- [threading] System times out waiting for unresponsive application when attempting to reset. #763
- [threading]
Particle.publish()
doesn't block when in listening mode. #761 - [threading].
delay()
/Particle.process()
pumps application events. - Serial, Serial1, SPI and EEPROM global objects guaranteed to be initialized before use. (Prevents White breathing LED if Serial used in a global instance constructor.)
- [Software Timers]((https://docs.particle.io/reference/firmware/photon/#software-timers) have an option for one-shot timers, and support class member function callbacks.
- RSA key generation would sometimes produce invalid keys. #779
- Static IP configuration was not being used.
- Interrupt on WKP with class method as an ISR #819
- Memory leak configuring WiFi credentials via SoftAP (TCP/HTTP)
- SPI DMA transfer callback invoked too early #791
- Unset
wiced_result_t
for tcp clients insocket_send
. #773 - Update bootloader to support
System.enterSafeMode()
. #751 - [threading]
WiFi.listen(false)
remains in listen mode. #743 - Factory Reset doesn't clear WiFi credentials until
network.connect()
. #736 - Comparison between
IPAddress
objects does not always work. #715 - P1 dfu-util 0.8 does not read/write from External Flash. #706
- DFU errors writing to flash silently ignored. #813
- [threading] heap allocation not thread-safe. #826
- System crash when button interrupt occurs during i2c transmission. #709
- [photon] 'analogWrite()` to DAC pins. #671
- [photon]
analogWrite()
to DAC pins requirespinMode()
each time. #662 - [photon]
System.sleep(pin,edge)
doesn't wake. #655
- Software Timers
- pulseIn(pin, value) now available for all devices.
- WiFi.dnsServerIP() and WiFi.dhcpServerIP()
- serialEvent()
- GCC virtual device
- System.version() to retrieve the version of system firmware #688
- Firmware control of OTA updates can happen #375
- [multithreading] Application thread continues to run in listening mode
- [multithreading]
Particle.process()
called from the application thread pumps application messages #659 Particle.variable()
supportsString
s #657- Simplified Particle.variable() API - variable type parameter is optional, and variables are passed by reference so
&
's are not required. - I2C will generate STOP and SW Reset immediately if Slave Acknowledge failure is detected (must use pull-up resistors), instead of taking 100ms. commit
- TCPClient unstable #672
- Photon frequently SOS's immediately following cloud re-connect #663
String.toLower()
has no affect on string. #665- SOS due to WICED socket handlers being called when socket is disposed. #663 #672
- Application constructors executed after RTOS startup so that HAL_Delay_Milliseconds() can be called. This may mean that
STARTUP()
code executes just a little later than before, but can safely use all public APIs. - Ensure bootloader region is write protected.
- White breathing LED on exiting listening mode. #682
- WICED not resolving DNS names with 4 parts (it was trying to decode as an IP address.)
- SoftAP via HTTP would fail on Safari due to request sent as multiple TCP packets. Fixed WICED HTTP server. #680
- Retained variables are not persisting, even without reset or deep sleep. #661
- Backup RAM enabled for monolithic builds #667
- Pure virtual call on creation of low priority std::thread #652
- [photon] separate System Thread
- [core] Hooks to support FreeRTOS (optional library)
- Variables stored in Backup RAM
- printf/printlnf on
Print
classes -Serial
,Serial1
,TCP
,UDP
String.format
for printf-style formatting of to asString
.- Wire.end() to release the I2C pins. #597
- Wire.reset() to reset the I2C bus. Thanks @pomplesiegel #598
- System.ticks() to retrieve the current MCU cycle counter for precise timing.
- System.enterSafeMode() to restart the device in safe mode.
- [photon]
WiFi.selectAntenna()
setting is persistent, so the last selected antenna is used when the device is in safe mode. [#618] - Detect when the cloud hasn't been serviced for 15s and disconnect, so device LED state accurately reflects the connection state when the application loop has stalled. #626
- Compile-time checks for
Particle.variable()
#619 - [photon] Increased retry count when connecting to WiFi. #620
- Setup button events #611
UDP.receivePacket()
would fail ifUDP.setBuffer()
hadn't been called first. Thanks @r2jitu.- [photon] Default SS pin for SPI1 now set to D5. #623
- [photon] Long delay entering listening mode. #566
- [photon] Solid green LED when WiFi network cannot be connected to due to invalid key. (The LED now blinks.)
- [photon] Storing more than 2 Wi-Fi credentials would sometimes give unpredictable results.
- [photon] TX/RX pins did not work after entering listening mode. #632
- [photon] Improvements to I2C for MCP23017 / Adafruit RGBLCDShield. #626
SPI.setClockDividerReference
,SPI.setClockSpeed
to set clock speed in a more portable manner. #454WiFi.scan
function to retrieve details of local access points. #567UDP.sendPacket
/UDP.receivePacket
to send/receive a packet directly to an application-supplied buffer. #452- Static IP Support [photon] - #451
- [photon] UDP multicast support via
UDP.joinMulticast
/UDP.leaveMulticast
. Many thanks @stevie67! waitFor(WiFi.ready)
syntax to make it easier to wait for system events. #415- Flexible time output with
Time.format()
#572
- Recipes and Tips section in the build documentation.
Particle.function
,Particle.subscribe
andattachInterrupt
can take a C++ method and instance pointer. #534 Thanks to @monkbroc!UDP.setBuffer
to set the buffer a UDP instance uses forread
/write
. #224 and #452WiFi.setCredentials()
can take a Cipher type to allow full specification of an AP's credentials. #574- TCPClient (from TCPServer) reports remote IP address. #551
- Configurable format in
Time.timeStr()
, including ISO 8601. #455 Servo.trim(adjust)
to allow small adjustments to the stationary point. #120- Time set from the cloud accounts for network latency. #581
String(Printable)
constructor so anyPrintable
can be converted to a string. example- Fluent API on
String
- many methods return*this
so method calls can be chained. - Small values passed to
delay(1)
result in more accurate delays. #260 - Bootloader does not show factory reset modes if a factory reset image is not available. #557
- Listening mode re-enters listening mode after credentials are given. #558
- String function dtoa() has problems with larger numbers. #563
- System doesn't set color of RGB LED when
RGB.control(true)
is called. #362, #472 and #544 - WiFi.SSID() may not return previous network when switching. #560
- [photon] System.sleep(5) not turning Wi-Fi back on after 5 seconds. #480
- regression: floating point support in sprintf not compiled in. #576
- [photon] SPI1 default clock speed was 7.5MHz, changed to 15MHz, same as for
SPI
. - TCPClient::connected() doesn't detect when the socket is closed #542
- dfu-util: error during downlod get_status msg removed when using :leave option #599
- [Core] A0 could not be used as an output #595
- Reinstate CFOD handling on the Photon.
- logging output documentation
- pressing 'v' in SoftAP mode displays the system version. FIRM-128
- P1: API (compatible with Core) to access the 1MByte external flash. #498
- Arduino compatibility macros for PROGMEM and more.
RGB.onChange
handler receives notification of the current LED color when it changes. Can be used to match an external LED to the onboard led. #518 Thanks to @monkbroc!- Serial2 available on P1 and Photon (note: this also requires above RGB.onChange handler and two resistors would need to be removed on the Photon)
Spark.connected()
et al. is nowParticle.connected()
. The formerSpark
library is still available but is deprecated.System.freeMemory()
API to determine the amount of available RAM.STARTUP()
macro to define blocks of code that execute at startup.
- Retrieve the LED brightness via
RGB.brightness()
- More prominent color change on the RGB LED when there is a cloud connection error.
- System.sleep() - 2nd parameter changed to
InterruptMode
from uint16_t to ensure the correct types are used. #499 - Less aggressive exponential backoff when the re-establishing the cloud connection. [FIRM-177]
- I2C Wire.endTransmission() returns unique values and I2C docs updated
- Generate I2C STOP after slave addr NACK, I2C software reset all timeouts - commit
- Improved I2C Master receive method and implemented error handler - commit - commit
WiFi.selectAntenna()
default antenna is now INTERNAL. Can be called at startup (before WiFi is initialized to select the desired antenna.
- [Regression] System connects WiFi when Spark.connect() is called after WiFi.on() #484
- Debug build now working.
- PWM issue fixed - 500Hz output on all channels #492
- Tone issue fixed on D2,D3,RX,TX #483
- SOS when registering more than 2 subscription handlers, and allow 4 subscription handlers to be successfully registered. #531
- SOS on TCPClient.connect() when DNS resolution failed or when connection fails #490
TCPClient::stop()
does not work on first connection #536TCPClient::connect()
does not close an existing socket. #538- TX/RX PWM randomly inverted #545
- UDP.begin/write return values #552
- Half-duplex mode on Serial1 via
Serial1.halfdupliex()
. Thanks to @prices. WiFi.connect(WIFI_CONNECT_SKIP_LISTEN)
allows application firmware to skip listen mode when there is no credentials.- System events
- I2C methods now use
micros()
for timeouts rather thanmillis()
, so I2C functions can be used in an interrupt handler. #460 WiFi.listen(false)
to programmatically exit WiFi listening mode.- make is verbose by default. To silence, add
-s
to the command line. WiFi.connect(WIFI_CONNECT_SKIP_LISTEN)
starts connection but does not enter listening mode if no credentials are found.- Setup/Mode button now starts listening mode when WiFi is off.
WiFi.listen(false)
can be used to exit listening mode (from an interrupt.)- LED flashes high-speed green when requesting an IP address via DHCP.
- [Photon/TCPServer] -
TCPClient.connected()
was not returningfalse
when the socket was asynchronously disconnected. - Fix time being reset on wakeup. (removed WICED RTC init code that resets to default preset time in platform_mcu_powersave_init() within photon-wiced repo.) #440
TCPClient.connected()
was not returningfalse
when the socket was disconnected from the other end.strdup()
was returning garbage #457attachInterrupt()
should work on all interrupt pins now except D0 & A5. Please note there are shared lines as per the following issue comment : [#443] (https://github.com/spark/firmware/issues/443#issuecomment-114389744)- I2C bus lockup when no slave devices are present by issuing a STOP condition after sLave send address fails.
spark/
events not propagated to application handlers. #481sprintf
calls not linking correctly. #471- Photon/P1 sometimes did not start without hitting reset after a cold boot.
- Disable LTO compile for user firmware since it causes linking problems (see
sprintf
above.)
- EEPROM storage of custom data types via
EEPROM.put()
and `EEPROM.get()' - When the device is in safe mode, the LED breathes magenta
attachSystemInterrupt()
allows hooking key system interrupts in user code.- DMA-driven SPI master
UDP.sendPacket()
method avoids buffering data when the user can supply the entire buffer at once.- [Photon] SoftAP setup can be done over HTTP
- platform-neutral fast pin access 449
- [P1] Serial2 support
- [Photon] The system firmware updates the bootloader to latest version
- [Photon] The system write protects the bootloader region.
- UDP uses dynamically allocated buffers
PRODUCT_ID
andPRODUCT_VERSION
place these details at a known place in the firmware image- DFU mode and serial firmware update can be triggered by setting the line rate.
Serial1.end()
hangs the system- Malformed CoAP acknowledgement message in cloud protocol.
SPARK_WLAN_Loop()
was not linked. (Workaround was to useSpark.process()
)- UDP doesn't send anything to the device until
UDP.write()
#407 - Divide by zero now caught and causes a SOS.
- Floating-point support for
sprintf()
reinstated - Fixed WICED DCT becoming unmodifiable
- Fix UDP.parsePacket() not receiving any data on the Photon #468
- Signed Photon USB Driver for use with Windows 8.1
Spark.syncTime()
was not linked. #426- Wire.setSpeed(CLOCK_SPEED_100KHZ) was not linked. #432
- WiFi.selectAntenna() was not linked.
- PHOTON!!!!
loop()
iteration rate increased by 1000 times - from 200 Hz to over 200 kHz!- Compiler: Removed all warnings from the compile (and made warnings as errors) so compiler output is minimal.
- Debugging: SWD Support, thanks to Elco Jacobs. #337
Spark.publish()
returns a success value - #388Spark.process()
as the public API for running the system loop. #347- Sleep no longer resets (on the Photon) #283
- Support for application code outside of the firmware repo. #374
- MAC Address available in setup via 'm' key. #352
- SoftAP setup on the Photon
Spark.sleep()
changed toSystem.sleep()
and similarly fordeviceID()
#390- Listening mode uses existing serial connection if already opened. #384
Spark.publish("event", PRIVATE)
shorthand - #376- Improved integrity checks for firmware images
- Added additional safe/recovery mode in bootloader (> 6.5 sec : restore factory code without clearing wifi credentials)
- Enabled CRC verification in bootloader before restoring/copying the firmware image from factory reset, ota downloaded area etc.
- Added 'program-serial' to build target to enter serial ymodem protocol for flashing user firmware (Testing pending...)
- Cloud string variables can be re-defined #241
- Removed hard-coded limit on number of functions and variables #111
- Parameterized function callbacks, lambda support for functions #311
- C++ STL headers supported
- Can duplicate the onboard RGB LED color in firmware. #302
WiFi.selectAntenna()
- select between internal (chip) and external (u.FL) antenna on Photon: #394WiFi.resolve()
to look up an IP address from a domain name. #91System.dfu()
to reboot the core in dfu mode, until next reset or next DFU update is received.
- SOS calling
Spark.publish()
inSEMI_AUTOMATIC
/MANUAL
mode - Subscriptions maintained when cloud disconnected. #278
- Fix for events with composite names. #382
WiFi.ready()
returning true afterWiFi.off()
in manual mode. #378Serial.peek()
implemented. #387- Mode button not working in semi-automatic or manual mode. #343
Time.timeStr()
had a newline at the end. #336WiFi.RSSI()
caused panic in some cases. #377Spark.publish()
caused SOS when cloud disconnected. #322TCPClient.flush()
discards data in the socket layer also. #416
- Platform: hardware dependencies are factored out from wiring into a hardware abstraction layer
- Repo: all 3 spark repos (core-common-lib, core-communication-lib, core-firmware) are combined into this repo.
- Modularization: factored common-lib into
platform
,services
andhal
modules. - Modularization: factored core-firmware into
wiring
,system
, 'main' anduser
modules. - Modularization: user code compiled as a separate library in the 'user' module
- Build system: fancy new build system - build/readme.md
- Modularization: modules folder containing dynamically linked modules for the Photon
- Local Build: Specify custom toolchain with
GCC_PREFIX
environment variable (firmware, core-common-lib, core-communication-lib)
- Wiring: More efficient and reliable
print(String)
(fix issue #281) #305 - DFU: Add DFU suffix to .bin file #323
- I2C: Use I2C polling mode by default #322
- Listening Mode: Fix hard fault when Wi-Fi is off #320
- LED Interaction: Fix breathing blue that should be blinking green #315
- Cloud: Secure random seed. When the spark does a handshake with the cloud, it receives a random number that is set as a seed for
rand()
- Wiring: Arduino-compatible
random()
andrandomSeed()
functions. #289 - Wiring: Arduino-compatible functions like
isAlpha()
andtoLowerCase()
. #293
- Wire: added missing Slave mode using DMA/Interrupts and updated Master mode using DMA. New APIs
Wire.setSpeed()
andWire.strechClock()
. #284 - Sleep:
Spark.sleep()
supports wakeup on pin change. #265