[stm32f429-discovery] General sweep to fix style according to make stylecheck.

This commit is contained in:
Piotr Esden-Tempski
2015-02-04 20:39:32 -08:00
parent c06aba1603
commit 8c6eb9ca57
26 changed files with 1091 additions and 963 deletions

View File

@@ -26,14 +26,14 @@ static void gpio_setup(void)
{
/* Enable GPIOD clock. */
/* Manually: */
// RCC_AHB1ENR |= RCC_AHB1ENR_IOPGEN;
/* RCC_AHB1ENR |= RCC_AHB1ENR_IOPGEN; */
/* Using API functions: */
rcc_periph_clock_enable(RCC_GPIOG);
/* Set GPIO13 (in GPIO port G) to 'output push-pull'. */
/* Manually: */
// GPIOG_CRH = (GPIO_CNF_OUTPUT_PUSHPULL << 2);
// GPIOG_CRH |= (GPIO_MODE_OUTPUT_2_MHZ << 2);
/* GPIOG_CRH = (GPIO_CNF_OUTPUT_PUSHPULL << 2); */
/* GPIOG_CRH |= (GPIO_MODE_OUTPUT_2_MHZ << 2); */
/* Using API functions: */
gpio_mode_setup(GPIOG, GPIO_MODE_OUTPUT, GPIO_PUPD_NONE, GPIO13);
}
@@ -47,20 +47,28 @@ int main(void)
/* Blink the LED (PG13) on the board. */
while (1) {
/* Manually: */
// GPIOG_BSRR = GPIO13; /* LED off */
// for (i = 0; i < 1000000; i++) /* Wait a bit. */
// __asm__("nop");
// GPIOG_BRR = GPIO13; /* LED on */
// for (i = 0; i < 1000000; i++) /* Wait a bit. */
// __asm__("nop");
#if 0
GPIOG_BSRR = GPIO13; /* LED off */
for (i = 0; i < 1000000; i++) { /* Wait a bit. */
__asm__("nop");
}
GPIOG_BRR = GPIO13; /* LED on */
for (i = 0; i < 1000000; i++) { /* Wait a bit. */
__asm__("nop");
}
#endif
/* Using API functions gpio_set()/gpio_clear(): */
// gpio_set(GPIOG, GPIO13); /* LED off */
// for (i = 0; i < 1000000; i++) /* Wait a bit. */
// __asm__("nop");
// gpio_clear(GPIOG, GPIO13); /* LED on */
// for (i = 0; i < 1000000; i++) /* Wait a bit. */
// __asm__("nop");
#if 0
gpio_set(GPIOG, GPIO13); /* LED off */
for (i = 0; i < 1000000; i++) { /* Wait a bit. */
__asm__("nop");
}
gpio_clear(GPIOG, GPIO13); /* LED on */
for (i = 0; i < 1000000; i++) { /* Wait a bit. */
__asm__("nop");
}
#endif
/* Using API function gpio_toggle(): */
gpio_toggle(GPIOG, GPIO13); /* LED on/off */