mirror of
https://github.com/0xFEEDC0DE64/arduino-esp32.git
synced 2025-07-12 18:26:30 +02:00
Update IDF to 3.2-3276a13 and esptool.py to 2.5.0 (#1878)
* TX Flow Control and Code cleanup * Use semaphore instead of delay TX functionality is done. * Use single buffer and empty queue on exit * Fix compile issues because of LwIP code relocation * Add temporary header to fix Azure not compiling * Fix AsyncUDP early init * AsyncUDP Multicast fixes * Add source mac address and rework multicast * Allow redefinition of default pins for Serials 1 and 2 * Update IDF to 3276a13 * Update esptool.py to 2.5.0 * Fix sketches * Fix log level in BluetoothSetial
This commit is contained in:
@ -47,21 +47,21 @@
|
||||
|
||||
/* command type codes */
|
||||
#define AVRC_CMD_CTRL 0 /* Instruct a target to perform an operation */
|
||||
#define AVRC_CMD_STATUS 1 /* Check a device<EFBFBD>s current status */
|
||||
#define AVRC_CMD_STATUS 1 /* Check a devices current status */
|
||||
#define AVRC_CMD_SPEC_INQ 2 /* Check whether a target supports a particular
|
||||
control command; all operands are included */
|
||||
#define AVRC_CMD_NOTIF 3 /* Used for receiving notification of a change in a device<EFBFBD>s state */
|
||||
#define AVRC_CMD_NOTIF 3 /* Used for receiving notification of a change in a devices state */
|
||||
#define AVRC_CMD_GEN_INQ 4 /* Check whether a target supports a particular
|
||||
control command; operands are not included */
|
||||
|
||||
/* response type codes */
|
||||
#define AVRC_RSP_NOT_IMPL 8 /* The target does not implement the command specified
|
||||
by the opcode and operand,
|
||||
or doesn<EFBFBD>t implement the specified subunit */
|
||||
or doesnt implement the specified subunit */
|
||||
#define AVRC_RSP_ACCEPT 9 /* The target executed or is executing the command */
|
||||
#define AVRC_RSP_REJ 10 /* The target implements the command specified by the
|
||||
opcode but cannot respond because the current state
|
||||
of the target doesn<EFBFBD>t allow it */
|
||||
of the target doesnt allow it */
|
||||
#define AVRC_RSP_IN_TRANS 11 /* The target implements the status command but it is
|
||||
in a state of transition; the status command may
|
||||
be retried at a future time */
|
||||
@ -70,7 +70,7 @@
|
||||
commands, the target returns stable and includes
|
||||
the status results */
|
||||
#define AVRC_RSP_CHANGED 13 /* The response frame contains a notification that the
|
||||
target device<EFBFBD>s state has changed */
|
||||
target devices state has changed */
|
||||
#define AVRC_RSP_INTERIM 15 /* For control commands, the target has accepted the
|
||||
request but cannot return information within 100
|
||||
milliseconds; for notify commands, the target accepted
|
||||
|
Reference in New Issue
Block a user