mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-07-16 21:01:31 +00:00
Added compile time error to the AVRISP-MKII project when built for the U4 chips, as the default VTARGET detection ADC channel does not exist on these chips (thanks to Marco).
This commit is contained in:
parent
e966219834
commit
81998ce297
@ -87,6 +87,8 @@ bool Endpoint_ConfigureEndpoint_Prv(const uint8_t Number,
|
|||||||
|
|
||||||
void Endpoint_ClearEndpoints(void)
|
void Endpoint_ClearEndpoints(void)
|
||||||
{
|
{
|
||||||
|
UEINT = 0;
|
||||||
|
|
||||||
for (uint8_t EPNum = 0; EPNum < ENDPOINT_TOTAL_ENDPOINTS; EPNum++)
|
for (uint8_t EPNum = 0; EPNum < ENDPOINT_TOTAL_ENDPOINTS; EPNum++)
|
||||||
{
|
{
|
||||||
Endpoint_SelectEndpoint(EPNum);
|
Endpoint_SelectEndpoint(EPNum);
|
||||||
|
@ -18,6 +18,8 @@
|
|||||||
* - Changed over all device demos to use a clearer algorithm for the configuring of the application's endpoints
|
* - Changed over all device demos to use a clearer algorithm for the configuring of the application's endpoints
|
||||||
* - Added missing DataflashManager_CheckDataflashOperation() function to the MassStorageKeyboard demo, removed redundant
|
* - Added missing DataflashManager_CheckDataflashOperation() function to the MassStorageKeyboard demo, removed redundant
|
||||||
* SCSI_Codes.h file as these values are part of the MassStorage Class Driver
|
* SCSI_Codes.h file as these values are part of the MassStorage Class Driver
|
||||||
|
* - Added compile time error to the AVRISP-MKII project when built for the U4 chips, as the default VTARGET detection ADC channel
|
||||||
|
* does not exist on these chips (thanks to Marco)
|
||||||
*
|
*
|
||||||
* <b>Fixed:</b>
|
* <b>Fixed:</b>
|
||||||
* - Fixed USB_GetHIDReportItemInfo() function modifying the given report item's data when the report item does not exist
|
* - Fixed USB_GetHIDReportItemInfo() function modifying the given report item's data when the report item does not exist
|
||||||
|
@ -54,6 +54,10 @@
|
|||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(USB_SERIES_4_AVR) && ((VTARGET_ADC_CHANNEL == 2) || (VTARGET_ADC_CHANNEL == 3))
|
||||||
|
#error The U4 AVR chips do not contain ADC channels 2 or 3. Please change VTARGET_ADC_CHANNEL or define NO_VTARGET_DETECT in the makefile.
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Macros: */
|
/* Macros: */
|
||||||
#if !defined(__DOXYGEN__)
|
#if !defined(__DOXYGEN__)
|
||||||
#define _GETADCMUXMASK2(x, y) x ## y
|
#define _GETADCMUXMASK2(x, y) x ## y
|
||||||
|
Loading…
Reference in New Issue
Block a user