[Style] A small coding style fixing session.

This commit is contained in:
Piotr Esden-Tempski 2013-07-05 20:35:13 -07:00
parent db1f19c8f8
commit 2f425af647
14 changed files with 29 additions and 27 deletions

View File

@ -53,11 +53,11 @@
#define MMIO64(addr) (*(volatile uint64_t *)(addr)) #define MMIO64(addr) (*(volatile uint64_t *)(addr))
/* Generic bit-band I/O accessor functions */ /* Generic bit-band I/O accessor functions */
#define BBIO_SRAM(addr,bit) \ #define BBIO_SRAM(addr, bit) \
MMIO8(((addr) & 0x0FFFFF) * 32 | 0x22000000 + (bit) * 4 ) MMIO8(((addr) & 0x0FFFFF) * 32 | 0x22000000 + (bit) * 4)
#define BBIO_PERIPH(addr,bit) \ #define BBIO_PERIPH(addr, bit) \
MMIO8(((addr) & 0x0FFFFF) * 32 | 0x42000000 + (bit) * 4 ) MMIO8(((addr) & 0x0FFFFF) * 32 | 0x42000000 + (bit) * 4)
/* Generic bit definition */ /* Generic bit definition */
#define BIT0 (1<<0) #define BIT0 (1<<0)

View File

@ -244,7 +244,7 @@ void gpio_unlock_commit(uint32_t gpioport, uint8_t gpios);
* by OR'ing then together. * by OR'ing then together.
* *
* @return The level of the GPIO port. The pins not specified in gpios are * @return The level of the GPIO port. The pins not specified in gpios are
* masked to zero. * masked to zero.
*/ */
static inline uint8_t gpio_read(uint32_t gpioport, uint8_t gpios) static inline uint8_t gpio_read(uint32_t gpioport, uint8_t gpios)
{ {

View File

@ -778,7 +778,7 @@ Line Devices only
@{*/ @{*/
/* ADC2_ETRGREG_REMAP: */ /* ADC2_ETRGREG_REMAP: */
/** /**
* ADC2 external trigger regulator conversion remapping * ADC2 external trigger regulator conversion remapping
* (only low-, medium-, high- and XL-density devices) * (only low-, medium-, high- and XL-density devices)
*/ */

View File

@ -738,7 +738,7 @@ injected channels.
#define ADC_CCR_MULTI_INDEPENDENT (0x00 << 0) #define ADC_CCR_MULTI_INDEPENDENT (0x00 << 0)
/* Dual modes (ADC1 + ADC2) */ /* Dual modes (ADC1 + ADC2) */
/** /**
* Dual modes (ADC1 + ADC2) Combined regular simultaneous + * Dual modes (ADC1 + ADC2) Combined regular simultaneous +
* injected simultaneous mode. * injected simultaneous mode.
*/ */

View File

@ -55,8 +55,9 @@ do { \
register uint16_t toggle_mask = GET_REG(REG) & (MSK); \ register uint16_t toggle_mask = GET_REG(REG) & (MSK); \
register uint16_t bit_selector; \ register uint16_t bit_selector; \
for (bit_selector = 1; bit_selector; bit_selector <<= 1) { \ for (bit_selector = 1; bit_selector; bit_selector <<= 1) { \
if ((bit_selector & (BIT)) != 0) \ if ((bit_selector & (BIT)) != 0) { \
toggle_mask ^= bit_selector; \ toggle_mask ^= bit_selector; \
} \
} \ } \
SET_REG(REG, toggle_mask); \ SET_REG(REG, toggle_mask); \
} while (0) } while (0)

View File

@ -321,8 +321,7 @@ static void lm4f_ep_stall_set(usbd_device *usbd_dev, uint8_t addr,
} else { } else {
(USB_TXCSRL(ep)) &= ~USB_TXCSRL_STALL; (USB_TXCSRL(ep)) &= ~USB_TXCSRL_STALL;
} }
} } else {
else {
if (stall) { if (stall) {
(USB_RXCSRL(ep)) |= USB_RXCSRL_STALL; (USB_RXCSRL(ep)) |= USB_RXCSRL_STALL;
} else { } else {

View File

@ -1,4 +1,4 @@
/* /*
* This file is part of the libopencm3 project. * This file is part of the libopencm3 project.
* *
* Copyright (C) 2012 Gareth McMullin <gareth@blacksphere.co.nz> * Copyright (C) 2012 Gareth McMullin <gareth@blacksphere.co.nz>

View File

@ -137,9 +137,9 @@ void gpio_set_output_options(uint32_t gpioport, uint8_t otype, uint8_t speed,
if (otype == 0x1) { if (otype == 0x1) {
GPIO_OTYPER(gpioport) |= gpios; GPIO_OTYPER(gpioport) |= gpios;
} } else {
else
GPIO_OTYPER(gpioport) &= ~gpios; GPIO_OTYPER(gpioport) &= ~gpios;
}
ospeedr = GPIO_OSPEEDR(gpioport); ospeedr = GPIO_OSPEEDR(gpioport);

View File

@ -172,7 +172,7 @@ threshold.
bool pwr_voltage_high(void) bool pwr_voltage_high(void)
{ {
return (PWR_CSR & PWR_CSR_PVDO); return PWR_CSR & PWR_CSR_PVDO;
} }
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
@ -186,7 +186,7 @@ cleared by software (see @ref pwr_clear_standby_flag).
bool pwr_get_standby_flag(void) bool pwr_get_standby_flag(void)
{ {
return (PWR_CSR & PWR_CSR_SBF); return PWR_CSR & PWR_CSR_SBF;
} }
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
@ -203,4 +203,3 @@ bool pwr_get_wakeup_flag(void)
return PWR_CSR & PWR_CSR_WUF; return PWR_CSR & PWR_CSR_WUF;
} }
/**@}*/ /**@}*/

View File

@ -1,4 +1,4 @@
/** @addtogroup rtc_file /** @addtogroup rtc_file
@author @htmlonly &copy; @endhtmlonly 2012 Karl Palsson <karlp@tweak.net.au> @author @htmlonly &copy; @endhtmlonly 2012 Karl Palsson <karlp@tweak.net.au>

View File

@ -1066,7 +1066,7 @@ void adc_set_regular_sequence(uint32_t adc, uint8_t length, uint8_t channel[])
reg32_1 |= (channel[i - 1] << ((i - 12 - 1) * 5)); reg32_1 |= (channel[i - 1] << ((i - 12 - 1) * 5));
} }
} }
reg32_1 |= ((length -1) << ADC_SQR1_L_LSB); reg32_1 |= ((length - 1) << ADC_SQR1_L_LSB);
ADC_SQR1(adc) = reg32_1; ADC_SQR1(adc) = reg32_1;
ADC_SQR2(adc) = reg32_2; ADC_SQR2(adc) = reg32_2;

View File

@ -39,7 +39,7 @@ Example 1: Push-pull digital output actions on ports C2 and C9
@code @code
gpio_set_mode(GPIOC, GPIO_MODE_OUTPUT_2_MHZ, gpio_set_mode(GPIOC, GPIO_MODE_OUTPUT_2_MHZ,
GPIO_CNF_OUTPUT_PUSHPULL, GPIO2 | GPIO9); GPIO_CNF_OUTPUT_PUSHPULL, GPIO2 | GPIO9);
gpio_set(GPIOC, GPIO2 | GPIO9); gpio_set(GPIOC, GPIO2 | GPIO9);
gpio_clear(GPIOC, GPIO2); gpio_clear(GPIOC, GPIO2);
gpio_toggle(GPIOC, GPIO2 | GPIO9); gpio_toggle(GPIOC, GPIO2 | GPIO9);

View File

@ -40,7 +40,7 @@ void pwr_set_vos_scale(vos_scale_t scale)
{ {
if (scale == SCALE1) { if (scale == SCALE1) {
PWR_CR |= PWR_CR_VOS; PWR_CR |= PWR_CR_VOS;
} else if (scale == SCALE2) { } else if (scale == SCALE2) {
PWR_CR &= PWR_CR_VOS; PWR_CR &= PWR_CR_VOS;
} }
} }

View File

@ -37,7 +37,7 @@ static uint8_t stm32f103_ep_stall_get(usbd_device *usbd_dev, uint8_t addr);
static void stm32f103_ep_nak_set(usbd_device *usbd_dev, uint8_t addr, static void stm32f103_ep_nak_set(usbd_device *usbd_dev, uint8_t addr,
uint8_t nak); uint8_t nak);
static uint16_t stm32f103_ep_write_packet(usbd_device *usbd_dev, uint8_t addr, static uint16_t stm32f103_ep_write_packet(usbd_device *usbd_dev, uint8_t addr,
const void *buf, uint16_t len); const void *buf, uint16_t len);
static uint16_t stm32f103_ep_read_packet(usbd_device *usbd_dev, uint8_t addr, static uint16_t stm32f103_ep_read_packet(usbd_device *usbd_dev, uint8_t addr,
void *buf, uint16_t len); void *buf, uint16_t len);
static void stm32f103_poll(usbd_device *usbd_dev); static void stm32f103_poll(usbd_device *usbd_dev);
@ -191,12 +191,14 @@ static uint8_t stm32f103_ep_stall_get(usbd_device *dev, uint8_t addr)
(void)dev; (void)dev;
if (addr & 0x80) { if (addr & 0x80) {
if ((*USB_EP_REG(addr & 0x7F) & USB_EP_TX_STAT) == if ((*USB_EP_REG(addr & 0x7F) & USB_EP_TX_STAT) ==
USB_EP_TX_STAT_STALL) USB_EP_TX_STAT_STALL) {
return 1; return 1;
}
} else { } else {
if ((*USB_EP_REG(addr) & USB_EP_RX_STAT) == if ((*USB_EP_REG(addr) & USB_EP_RX_STAT) ==
USB_EP_RX_STAT_STALL) USB_EP_RX_STAT_STALL) {
return 1; return 1;
}
} }
return 0; return 0;
} }
@ -213,9 +215,9 @@ static void stm32f103_ep_nak_set(usbd_device *dev, uint8_t addr, uint8_t nak)
if (nak) { if (nak) {
USB_SET_EP_RX_STAT(addr, USB_EP_RX_STAT_NAK); USB_SET_EP_RX_STAT(addr, USB_EP_RX_STAT_NAK);
} } else {
else
USB_SET_EP_RX_STAT(addr, USB_EP_RX_STAT_VALID); USB_SET_EP_RX_STAT(addr, USB_EP_RX_STAT_VALID);
}
} }
/** /**
@ -308,10 +310,11 @@ static void stm32f103_poll(usbd_device *dev)
uint8_t ep = istr & USB_ISTR_EP_ID; uint8_t ep = istr & USB_ISTR_EP_ID;
uint8_t type = (istr & USB_ISTR_DIR) ? 1 : 0; uint8_t type = (istr & USB_ISTR_DIR) ? 1 : 0;
if (type) /* OUT or SETUP transaction */ if (type) { /* OUT or SETUP transaction */
type += (*USB_EP_REG(ep) & USB_EP_SETUP) ? 1 : 0; type += (*USB_EP_REG(ep) & USB_EP_SETUP) ? 1 : 0;
else /* IN transaction */ } else { /* IN transaction */
USB_CLR_EP_TX_CTR(ep); USB_CLR_EP_TX_CTR(ep);
}
if (dev->user_callback_ctr[ep][type]) { if (dev->user_callback_ctr[ep][type]) {
dev->user_callback_ctr[ep][type] (dev, ep); dev->user_callback_ctr[ep][type] (dev, ep);