Whitespace changes in the tiva(stellaris/lpc directory structure commit

This commit is contained in:
Uwe Bonnes
2014-02-13 20:01:58 +01:00
committed by Frantisek Burian
parent 1740fee230
commit 06208be477
28 changed files with 14 additions and 33 deletions

View File

@@ -28,4 +28,3 @@ MEMORY
/* Include the common ld script. */
INCLUDE libopencm3_lm3s.ld

View File

@@ -22,4 +22,3 @@ BINARY = miniblink
LDSCRIPT = ../lm3s3748-evb.ld
include ../../Makefile.include

View File

@@ -6,4 +6,3 @@ This is the smallest-possible example program using libopencm3.
It's intended for the LuminaryMicro LM3S3748-EVB.
It should blink the STATUS LED on the board.

View File

@@ -28,4 +28,3 @@ MEMORY
/* Include the common ld script. */
INCLUDE libopencm3_lm3s.ld

View File

@@ -22,4 +22,3 @@ BINARY = miniblink
LDSCRIPT = ../lm3s811-evb.ld
include ../../Makefile.include

View File

@@ -6,4 +6,3 @@ This is the smallest-possible example program using libopencm3.
It's intended for the LuminaryMicro LM3S811-EVB.
It should blink the STATUS LED on the board.

View File

@@ -45,4 +45,3 @@ BMP_PORT ?=
include ../../../../Makefile.rules

View File

@@ -28,4 +28,3 @@ MEMORY
/* Include the common ld script. */
INCLUDE libopencm3_lm4f.ld

View File

@@ -22,4 +22,3 @@ BINARY = miniblink
LDSCRIPT = ../ek-lm4f120xl.ld
include ../../Makefile.include

View File

@@ -18,5 +18,3 @@ Pressing SW1 bypasses the PLL completely, and runs off the raw 16MHz clock
provided by the external crystal oscillator.
The LEDs will toggle at different speeds, depending on the system clock. The
system clock changes are handled within the interrupt service routine.

View File

@@ -192,7 +192,7 @@ void gpiof_isr(void)
/* Clear interrupt source */
gpio_clear_interrupt_flag(GPIOF, USR_SW1);
}
if (gpio_is_interrupt_source(GPIOF, USR_SW2)) {
/* SW2 was just depressed */
if (!bypass) {

View File

@@ -22,4 +22,3 @@ BINARY = uart_echo_interrupt
LDSCRIPT = ../ek-lm4f120xl.ld
include ../../Makefile.include

View File

@@ -4,7 +4,7 @@ README
This example demonstrates the ease of setting up the UART with libopencm3, and
using UART interrupts. UART echo is achieved by echoing back received characters
from within the interrupt service routine. This has the advantage over using
from within the interrupt service routine. This has the advantage over using
blocking reads and writes that the main program loop is freed for other tasks.
The UART is set up as 921600-8N1.

View File

@@ -69,7 +69,7 @@ void uart0_isr(void)
uart_send(UART0, rx);
irq_clear |= UART_INT_RX;
}
uart_clear_interrupt_flag(UART0, irq_clear);
}

View File

@@ -22,4 +22,3 @@ BINARY = uart_echo_simple
LDSCRIPT = ../ek-lm4f120xl.ld
include ../../Makefile.include

View File

@@ -207,7 +207,7 @@ static void usb_setup(void)
* Enable USB interrupts
*
* We don't enable the USB peripheral clock here, but we need it on in order to
* acces USB registers. Hence, this must be called after usbd_init().
* acces USB registers. Hence, this must be called after usbd_init().
*/
static void usb_ints_setup(void)
{

View File

@@ -66,4 +66,3 @@ void glue_send_data_cb(uint8_t *buf, uint16_t len);
#endif /* __STELLARIS_EK_LM4F120XL_USB_TO_SERIAL_CDCACM_H */
/**@}*/