1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-11-29 07:24:13 +01:00

run uncrustify.

This commit is contained in:
Mathieu Rondonneau 2014-12-04 20:17:29 -08:00
parent 9622a8919d
commit 6844f8351d
2 changed files with 3 additions and 2 deletions

View File

@ -133,7 +133,9 @@ static void PIOS_DSM_Bind(struct pios_dsm_dev *dsm_dev, uint8_t bind)
GPIO_SetBits(cfg->bind.gpio, cfg->bind.init.GPIO_Pin);
/* Wait until the bind window opens. */
while(PIOS_DELAY_GetuS() < DSM_BIND_MIN_DELAY_US);
while (PIOS_DELAY_GetuS() < DSM_BIND_MIN_DELAY_US) {
;
}
for (int i = 0; i < bind; i++) {
/* RX line, drive low for 120us */

View File

@ -359,7 +359,6 @@ static void PIOS_Board_PPM_callback(const int16_t *channels)
void PIOS_Board_Init(void)
{
const struct pios_board_info *bdinfo = &pios_board_info_blob;
#if defined(PIOS_INCLUDE_LED)