mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-09-10 17:15:43 +00:00
Add new TemperatureDataLogger project, a simple USB Mass Storage class Temperature Data Logger using the onboard Dataflash and Temperature sensor.
This commit is contained in:
@@ -149,7 +149,7 @@
|
||||
|
||||
#define ADC_GetStatus() ((ADCSRA & (1 << ADEN)) ? true : false)
|
||||
|
||||
#define ADC_IsReadingComplete() (!(ADCSRA & (1 << ADSC)))
|
||||
#define ADC_IsReadingComplete() (ADCSRA & (1 << ADSC))
|
||||
|
||||
#define ADC_GetResult() ADC
|
||||
#endif
|
||||
|
||||
@@ -12,6 +12,8 @@
|
||||
* - Added TPI programming support for 6-pin ATTINY to the AVRISP programmer project
|
||||
* - Added command timeout counter to the AVRISP project so that the device no longer freezes when incorrectly connected
|
||||
* to a target
|
||||
* - Added new TemperatureDataLogger application, a USB data logger which writes to the device's dataflash and appears to
|
||||
* the host as a standard Mass Storage device when inserted
|
||||
*
|
||||
* <b>Changed:</b>
|
||||
* - Slowed down bit-banged PDI programming in the AVRISP project slightly to prevent transmission errors
|
||||
@@ -22,6 +24,7 @@
|
||||
* <b>Fixed:</b>
|
||||
* - Fixed AVRISP project not able to enter programming mode when ISP protocol is used
|
||||
* - Fixed AVRISP PDI race condition where the guard time between direction changes could be interpreted as a start bit
|
||||
* - Fixed ADC_IsReadingComplete() returning an inverted result
|
||||
*
|
||||
* \section Sec_ChangeLog091223 Version 091223
|
||||
*
|
||||
|
||||
@@ -103,6 +103,7 @@
|
||||
* - <b>LEDNotifier</b> - USB LED Notification project
|
||||
* - <b>Magstripe</b> - Magnetic Stripe Card Reader project
|
||||
* - <b>MissileLaucher</b> - Toy Missile Launcher Host project
|
||||
* - <b>TemperatureDataLogger</b> - Temperature Datalogging project
|
||||
* - <b>USBtoSerial</b> - USB to USART Serial Converter project
|
||||
*
|
||||
* </small>
|
||||
|
||||
Reference in New Issue
Block a user