Skip to content

Commit

Permalink
firmware: devices: obdh: Adding function prototypes #75
Browse files Browse the repository at this point in the history
  • Loading branch information
andrempmattos committed Jun 30, 2021
1 parent b8d123a commit 231465b
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion firmware/devices/obdh/obdh.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@
* \brief OBDH device implementation.
*
* \author Augusto Cezar Boldori Vassoler <[email protected]>
* \author Andre M. P. de Mattos <[email protected]>
*
* \version 0.1.1
* \version 0.2.1
*
* \date 12/06/2021
*
Expand All @@ -52,6 +53,18 @@ int obdh_init()
return -1;
}

int obdh_decode(void) {
// call crc package
// return action to be performed from a list
return -1;
}

int obdh_answer(void) {
// select answer action
// populate TX buffer
return -1;
}

/** \} End of obdh group */


Expand Down

0 comments on commit 231465b

Please sign in to comment.