summaryrefslogtreecommitdiff
path: root/src/class
diff options
context:
space:
mode:
authorReinhard Panhuber <[email protected]>2020-10-03 09:46:22 +0200
committerReinhard Panhuber <[email protected]>2020-10-03 09:46:22 +0200
commit2050dc0dc743294b07d0534278027da689bc6813 (patch)
treeb8a0aa3d7b607c30ff0788b208406a757d4b86d9 /src/class
parent603ce17696dfb930f93649d82a87702fd89f303f (diff)
Revert #define CFG_TUSB_DEBUG 2 to #define CFG_TUSB_DEBUG 0
Change 1 << 31 to 0x100000000 in audio.h
Diffstat (limited to 'src/class')
-rw-r--r--src/class/audio/audio.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/class/audio/audio.h b/src/class/audio/audio.h
index 0027217cb..7e591fbe6 100644
--- a/src/class/audio/audio.h
+++ b/src/class/audio/audio.h
@@ -489,7 +489,7 @@ typedef enum
AUDIO_DATA_FORMAT_TYPE_I_IEEE_FLOAT = (uint32_t) (1 << 2),
AUDIO_DATA_FORMAT_TYPE_I_ALAW = (uint32_t) (1 << 3),
AUDIO_DATA_FORMAT_TYPE_I_MULAW = (uint32_t) (1 << 4),
- AUDIO_DATA_FORMAT_TYPE_I_RAW_DATA = (uint32_t) (1 << 31),
+ AUDIO_DATA_FORMAT_TYPE_I_RAW_DATA = 0x100000000,
} audio_data_format_type_I_t;
/// All remaining definitions are taken from the descriptor descriptions in the UAC2 main specification