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: RSALB_hbridge_helloworld RSALB_lobster WavPlayer_test AudioCODEC_HelloWorld
WavPlayerConfig.cpp@0:3695886f3495, 2012-09-19 (annotated)
- Committer:
- p07gbar
- Date:
- Wed Sep 19 10:58:16 2012 +0000
- Revision:
- 0:3695886f3495
Working stably
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| p07gbar | 0:3695886f3495 | 1 | #include "WavPlayerConfig.h" |
| p07gbar | 0:3695886f3495 | 2 | |
| p07gbar | 0:3695886f3495 | 3 | WavPlayerConfig::WavPlayerConfig() |
| p07gbar | 0:3695886f3495 | 4 | { |
| p07gbar | 0:3695886f3495 | 5 | |
| p07gbar | 0:3695886f3495 | 6 | format_tag = 0; |
| p07gbar | 0:3695886f3495 | 7 | channels = 0; |
| p07gbar | 0:3695886f3495 | 8 | samples_per_sec = 0; |
| p07gbar | 0:3695886f3495 | 9 | avg_bytes_per_sec = 0; |
| p07gbar | 0:3695886f3495 | 10 | block_align = 0; |
| p07gbar | 0:3695886f3495 | 11 | bits_per_sample = 0; |
| p07gbar | 0:3695886f3495 | 12 | data_length = 0; |
| p07gbar | 0:3695886f3495 | 13 | |
| p07gbar | 0:3695886f3495 | 14 | } |