Jonne Valola / PokittoLib Featured

Dependents:   YATTT sd_map_test cPong SnowDemo ... more

PokittoLib

Library for programming Pokitto hardware

How to Use

  1. Import this library to online compiler (see button "import" on the right hand side
  2. DO NOT import mbed-src anymore, a better version is now included inside PokittoLib
  3. Change My_settings.h according to your project
  4. Start coding!

Files at this revision

API Documentation at this revision

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