mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-07-16 04:41:28 +00:00
Fixed invalid PID value used in the TempDataLogger project host application (thanks to Anupam Pathak).
This commit is contained in:
parent
e55946f972
commit
252bd7bb2c
@ -52,6 +52,7 @@
|
|||||||
* - Fixed AVRISP-MKII Clone failing to start application firmware once a TPI programming session is exited
|
* - Fixed AVRISP-MKII Clone failing to start application firmware once a TPI programming session is exited
|
||||||
* - Fixed DFU class bootloader not resetting the LED pins as high impedance inputs when a software jump to the user applications is requested
|
* - Fixed DFU class bootloader not resetting the LED pins as high impedance inputs when a software jump to the user applications is requested
|
||||||
* - Fixed AVRISP-MKII Clone timing out on long programming commands such as programming the EEPROM on an ATMEGA8 (thanks to Martin Kelling)
|
* - Fixed AVRISP-MKII Clone timing out on long programming commands such as programming the EEPROM on an ATMEGA8 (thanks to Martin Kelling)
|
||||||
|
* - Fixed invalid PID value used in the TempDataLogger project host application (thanks to Anupam Pathak)
|
||||||
*
|
*
|
||||||
* \section Sec_ChangeLog111009 Version 111009
|
* \section Sec_ChangeLog111009 Version 111009
|
||||||
* <b>New:</b>
|
* <b>New:</b>
|
||||||
|
@ -13,7 +13,7 @@ namespace Project1HostApp
|
|||||||
public partial class frmDataloggerSettings : Form
|
public partial class frmDataloggerSettings : Form
|
||||||
{
|
{
|
||||||
private const int DEVICE_VID = 0x03EB;
|
private const int DEVICE_VID = 0x03EB;
|
||||||
private const int DEVICE_PID = 0xFAFA;
|
private const int DEVICE_PID = 0x2063;
|
||||||
|
|
||||||
private struct Device_Report_t
|
private struct Device_Report_t
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user