Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: unzen_sample_LPC4088_quickstart
Revision 16:e417a99447ed, committed 2016-06-11
- Comitter:
- shorie
- Date:
- Sat Jun 11 00:26:41 2016 +0000
- Parent:
- 15:0db847496bb9
- Child:
- 17:78be0725977b
- Commit message:
- Change doxygen comment
Changed in this revision
| unzen.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/unzen.h Fri Jun 10 23:45:20 2016 +0000
+++ b/unzen.h Sat Jun 11 00:26:41 2016 +0000
@@ -70,10 +70,10 @@
I2C i2c(SDA, SCL);
// create an audio codec contoler
- shimabara::UMB_ADAU1361A codec(shimabara::Fs_32, &i2c, CODEC_I2C_ADDR ); // Default Fs is 48kHz
-// shimabara::UMB_ADAU1361A codec(shimabara::Fs_441, &i2c, CODEC_I2C_ADDR );
-// shimabara::UMB_ADAU1361A codec(shimabara::Fs_48, &i2c, CODEC_I2C_ADDR );
-// shimabara::UMB_ADAU1361A codec(shimabara::Fs_96, &i2c, CODEC_I2C_ADDR );
+ shimabara::UMB_ADAU1361A codec(shimabara::Fs_32, i2c, CODEC_I2C_ADDR ); // Default Fs is 48kHz
+// shimabara::UMB_ADAU1361A codec(shimabara::Fs_441, i2c, CODEC_I2C_ADDR );
+// shimabara::UMB_ADAU1361A codec(shimabara::Fs_48, i2c, CODEC_I2C_ADDR );
+// shimabara::UMB_ADAU1361A codec(shimabara::Fs_96, i2c, CODEC_I2C_ADDR );
// create an audio framework by singlton pattern
unzen::Framework audio;