Skip to content

Commit b4e7589

Browse files
committed
CurieI2SDMA.h: Fix typo at line 23 and 24
1 parent 1974340 commit b4e7589

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

libraries/CurieI2S/examples/I2SDMA_RXCallBack/I2SDMA_RXCallBack.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ void loop()
7373
}
7474
loop_count = (dataBuff[shift_count] >> 16);
7575

76-
// check data
76+
// check data: the data from TX side is (loop_count <<16) + (1~128), where loop_count++ in very loop.
7777
done_flag = 1;
7878
for(uint32_t i = 0 ;i < BUFF_SIZE;++i)
7979
{

libraries/CurieI2S/src/CurieI2SDMA.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020

2121
//CurieI2SDMA.h
2222

23-
#ifndef _CURI2SDMA_H_
24-
#define _CURI2SDMA_H_
23+
#ifndef _CURIEI2SDMA_H_
24+
#define _CURIEI2SDMA_H_
2525

2626
#include <Arduino.h>
2727

0 commit comments

Comments
 (0)