mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-07-16 12:51:47 +00:00
Commit for 101122 release.
This commit is contained in:
parent
c43605612d
commit
0595ac27d5
@ -7,6 +7,9 @@
|
|||||||
/** \page Page_ChangeLog Project Changelog
|
/** \page Page_ChangeLog Project Changelog
|
||||||
*
|
*
|
||||||
* \section Sec_ChangeLogXXXXXX Version XXXXXX
|
* \section Sec_ChangeLogXXXXXX Version XXXXXX
|
||||||
|
* None yet.
|
||||||
|
*
|
||||||
|
* \section Sec_ChangeLog101122 Version 101122
|
||||||
* <b>New:</b>
|
* <b>New:</b>
|
||||||
* - Core:
|
* - Core:
|
||||||
* - Added new SCSI_ASENSE_NOT_READY_TO_READY_CHANGE constant to the Mass Storage class driver, to indicate when a previously
|
* - Added new SCSI_ASENSE_NOT_READY_TO_READY_CHANGE constant to the Mass Storage class driver, to indicate when a previously
|
||||||
|
@ -10,7 +10,10 @@
|
|||||||
* to the next version released. It does not indicate all new additions to the library in each version change, only
|
* to the next version released. It does not indicate all new additions to the library in each version change, only
|
||||||
* areas relevant to making older projects compatible with the API changes of each new release.
|
* areas relevant to making older projects compatible with the API changes of each new release.
|
||||||
*
|
*
|
||||||
* \section Sec_MigrationXXXXXX Migrating from 100807 to XXXXXX
|
* \section Sec_MigrationXXXXXX Migrating from 101122 to XXXXXX
|
||||||
|
* None yet.
|
||||||
|
*
|
||||||
|
* \section Sec_Migration101122 Migrating from 100807 to 101122
|
||||||
* <b>USB Core</b>
|
* <b>USB Core</b>
|
||||||
* - A new USB driver source file, Drivers/USB/HighLevel/EndpointStream.c now exists. This source file should be added
|
* - A new USB driver source file, Drivers/USB/HighLevel/EndpointStream.c now exists. This source file should be added
|
||||||
* to all project makefiles using the USB driver of LUFA, or the makefile should be updated to use the new module source
|
* to all project makefiles using the USB driver of LUFA, or the makefile should be updated to use the new module source
|
||||||
@ -256,7 +259,6 @@
|
|||||||
* - The DESCRIPTOR_COMPARATOR() macro has been removed. User applications should replace all instances of the macro with
|
* - The DESCRIPTOR_COMPARATOR() macro has been removed. User applications should replace all instances of the macro with
|
||||||
* regular function signatures of a function accepting a void pointer to the descriptor to test, and returning a uint8_t value.
|
* regular function signatures of a function accepting a void pointer to the descriptor to test, and returning a uint8_t value.
|
||||||
*
|
*
|
||||||
*
|
|
||||||
* \section Sec_Migration090510 Migrating from 090401 to 090510
|
* \section Sec_Migration090510 Migrating from 090401 to 090510
|
||||||
*
|
*
|
||||||
* <b>All</b>
|
* <b>All</b>
|
||||||
@ -325,7 +327,6 @@
|
|||||||
* structure type has been renamed to USB_Request_Header_t.
|
* structure type has been renamed to USB_Request_Header_t.
|
||||||
* - The values of the Pipe_Stream_RW_ErrorCodes_t enum have had the "ERROR_" portion of their names removed.
|
* - The values of the Pipe_Stream_RW_ErrorCodes_t enum have had the "ERROR_" portion of their names removed.
|
||||||
*
|
*
|
||||||
*
|
|
||||||
* \section Sec_Migration090401 Migrating from 090209 to 090401
|
* \section Sec_Migration090401 Migrating from 090209 to 090401
|
||||||
*
|
*
|
||||||
* <b>All</b>
|
* <b>All</b>
|
||||||
@ -352,7 +353,6 @@
|
|||||||
* NO_CLEARSET_FEATURE_REQUEST compile time token, it can be replaced with the FEATURELESS_CONTROL_ONLY_DEVICE token with no further
|
* NO_CLEARSET_FEATURE_REQUEST compile time token, it can be replaced with the FEATURELESS_CONTROL_ONLY_DEVICE token with no further
|
||||||
* modifications required.
|
* modifications required.
|
||||||
*
|
*
|
||||||
*
|
|
||||||
* \section Sec_Migration090209 Migrating from 081217 to 090209
|
* \section Sec_Migration090209 Migrating from 081217 to 090209
|
||||||
*
|
*
|
||||||
* <b>Device Mode</b>
|
* <b>Device Mode</b>
|
||||||
@ -381,7 +381,6 @@
|
|||||||
* - Most library demos have been enhanced and/or had errors corrected. All users of all demos should upgrade their codebase to
|
* - Most library demos have been enhanced and/or had errors corrected. All users of all demos should upgrade their codebase to
|
||||||
* the latest demo versions.
|
* the latest demo versions.
|
||||||
*
|
*
|
||||||
*
|
|
||||||
* \section Sec_Migration171208 Migrating from V1.5.3 to 081217
|
* \section Sec_Migration171208 Migrating from V1.5.3 to 081217
|
||||||
*
|
*
|
||||||
* <b>All</b>
|
* <b>All</b>
|
||||||
@ -426,7 +425,6 @@
|
|||||||
* - Calling USB_Init() now forces a complete USB interface reset and enumeration, even if the USB interface is
|
* - Calling USB_Init() now forces a complete USB interface reset and enumeration, even if the USB interface is
|
||||||
* currently initialized.
|
* currently initialized.
|
||||||
*
|
*
|
||||||
*
|
|
||||||
* \section Sec_Migration152 Migrating from V1.5.2 to V1.5.3
|
* \section Sec_Migration152 Migrating from V1.5.2 to V1.5.3
|
||||||
*
|
*
|
||||||
* <b>Library Demos</b>
|
* <b>Library Demos</b>
|
||||||
@ -472,7 +470,6 @@
|
|||||||
* to either supply NO_STREAM_CALLBACK as the extra parameter, or disable stream callbacks altogether by passing
|
* to either supply NO_STREAM_CALLBACK as the extra parameter, or disable stream callbacks altogether by passing
|
||||||
* the token NO_STREAM_CALLBACKS to the compiler using the -D switch.
|
* the token NO_STREAM_CALLBACKS to the compiler using the -D switch.
|
||||||
*
|
*
|
||||||
*
|
|
||||||
* \section Sec_Migration151 Migrating from V1.5.1 to V1.5.2
|
* \section Sec_Migration151 Migrating from V1.5.1 to V1.5.2
|
||||||
*
|
*
|
||||||
* <b>Library Demos</b>
|
* <b>Library Demos</b>
|
||||||
@ -482,7 +479,6 @@
|
|||||||
* - The DFU class bootloader has had several bugs corrected in this release. It is recommended that where
|
* - The DFU class bootloader has had several bugs corrected in this release. It is recommended that where
|
||||||
* possible any existing devices upgrade to the latest bootloader code.
|
* possible any existing devices upgrade to the latest bootloader code.
|
||||||
*
|
*
|
||||||
*
|
|
||||||
* \section Sec_Migration150 Migrating from V1.5.0 to V1.5.1
|
* \section Sec_Migration150 Migrating from V1.5.0 to V1.5.1
|
||||||
*
|
*
|
||||||
* <b>Library Demos</b>
|
* <b>Library Demos</b>
|
||||||
@ -498,7 +494,6 @@
|
|||||||
* - The AudioOut demo did not correctly tristate the speaker pins when USB was disconnected, wasting power.
|
* - The AudioOut demo did not correctly tristate the speaker pins when USB was disconnected, wasting power.
|
||||||
* Projects built upon the AudioOut demo should upgrade to the latest code.
|
* Projects built upon the AudioOut demo should upgrade to the latest code.
|
||||||
*
|
*
|
||||||
*
|
|
||||||
* \section Sec_Migration141 Migrating from V1.4.1 to V1.5.0
|
* \section Sec_Migration141 Migrating from V1.4.1 to V1.5.0
|
||||||
*
|
*
|
||||||
* <b>Library Demos</b>
|
* <b>Library Demos</b>
|
||||||
|
Loading…
Reference in New Issue
Block a user