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: YATTT sd_map_test cPong SnowDemo ... more
PokittoLib
Library for programming Pokitto hardware
How to Use
- Import this library to online compiler (see button "import" on the right hand side
- DO NOT import mbed-src anymore, a better version is now included inside PokittoLib
- Change My_settings.h according to your project
- Start coding!
Revision 34:427237571c6a, committed 2018-03-24
- Comitter:
- Pokitto
- Date:
- Sat Mar 24 13:17:22 2018 +0000
- Parent:
- 33:7d20a1e51908
- Child:
- 35:4f7edccf8ed6
- Commit message:
- Bug fix (missing definition of uint8_t output)
Changed in this revision
| POKITTO_HW/HWSound.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/POKITTO_HW/HWSound.cpp Sat Mar 10 19:03:26 2018 +0000
+++ b/POKITTO_HW/HWSound.cpp Sat Mar 24 13:17:22 2018 +0000
@@ -324,7 +324,8 @@
void pokSoundIRQ() {
#if POK_ENABLE_SOUND > 0
- //return;
+ uint8_t output=0;
+ streamon=1;
#ifndef POK_SIM
pwmout_t* obj = &audiopwm;
#endif