Skip to content

Commit 3586c9d

Browse files
committed
Fix gps-board void GpsMcuOnPpsSignal function prototype.
1 parent 7c3953e commit 3586c9d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/boards/NAMote72/gps-board.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ bool GpsPowerEnInverted = false;
5454

5555
extern Uart_t Uart1;
5656

57-
void GpsMcuOnPpsSignal( void )
57+
void GpsMcuOnPpsSignal( void* context )
5858
{
5959
bool parseData = false;
6060

src/boards/gps-board.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ typedef enum PpsTrigger_s
3939
/*!
4040
* \brief Low level handling of the PPS signal from the GPS receiver
4141
*/
42-
void GpsMcuOnPpsSignal( void );
42+
void GpsMcuOnPpsSignal( void* context );
4343

4444
/*!
4545
* \brief Invert the IRQ trigger edge on the PPS signal

0 commit comments

Comments
 (0)