summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2015-06-28 05:27:24 +0200
committerDaniel Friesel <derf@finalrewind.org>2015-06-28 05:27:24 +0200
commit0119eb8c42909f0c93d5d514ebb253d6250e86ff (patch)
tree0b3ac4a57687c0cdea22934c3fa973c8af0c3a0b
parent27bb181c0330d1ec4f5e0445e5b23a9737460bbc (diff)
wiispkr: fix typo/miscalculation in comments (thanks to @G33kDude for pointing it out)HEADmaster
-rw-r--r--wiispkr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/wiispkr.c b/wiispkr.c
index 22fade1..ba678c7 100644
--- a/wiispkr.c
+++ b/wiispkr.c
@@ -9,9 +9,9 @@
* A note on sample rates:
* Right now we use 2kHz with 8bit signed pcm.
* The speaker eats up to 20 bytes of raw data at once, so this gives us
- * 100 updates per second (one every 10 us).
+ * 100 updates per second (one every 10 ms).
* Higher rates like 3kHz don't work as well, looks like one report
- * every 10us is about as fast as the bluetooth chipset / driver here gets.
+ * every 10ms is about as fast as the bluetooth chipset / driver here gets.
*/
#include <stdio.h>