diff options
author | inmarket <andrewh@inmarket.com.au> | 2018-11-03 10:51:23 +1000 |
---|---|---|
committer | inmarket <andrewh@inmarket.com.au> | 2018-11-03 10:51:23 +1000 |
commit | 7c5a6c928fa7129cf754c9c73c5c7ae39372ba9d (patch) | |
tree | 95cf152ef65ff19c7b2515b427bbe86b92b611d0 /boards/base/RaspberryPi | |
parent | 8bd70d953bcd3e32ceb4e45a4e561c973726280a (diff) | |
download | uGFX-7c5a6c928fa7129cf754c9c73c5c7ae39372ba9d.tar.gz uGFX-7c5a6c928fa7129cf754c9c73c5c7ae39372ba9d.tar.bz2 uGFX-7c5a6c928fa7129cf754c9c73c5c7ae39372ba9d.zip |
For all source files update integer types to the new gI8 etc type names
Diffstat (limited to 'boards/base/RaspberryPi')
-rw-r--r-- | boards/base/RaspberryPi/FreeRTOS/mmio.h | 10 | ||||
-rw-r--r-- | boards/base/RaspberryPi/FreeRTOS/uart.c | 8 | ||||
-rw-r--r-- | boards/base/RaspberryPi/FreeRTOS/uart.h | 4 | ||||
-rw-r--r-- | boards/base/RaspberryPi/board_framebuffer.h | 24 |
4 files changed, 23 insertions, 23 deletions
diff --git a/boards/base/RaspberryPi/FreeRTOS/mmio.h b/boards/base/RaspberryPi/FreeRTOS/mmio.h index 1a7fb5c2..8bf3a363 100644 --- a/boards/base/RaspberryPi/FreeRTOS/mmio.h +++ b/boards/base/RaspberryPi/FreeRTOS/mmio.h @@ -6,16 +6,16 @@ #include <stdint.h> // write to MMIO register -static GFXINLINE void mmio_write(uint32_t reg, uint32_t data) { - uint32_t *ptr = (uint32_t*)reg; +static GFXINLINE void mmio_write(gU32 reg, gU32 data) { + gU32 *ptr = (gU32*)reg; asm volatile("str %[data], [%[reg]]" : : [reg]"r"(ptr), [data]"r"(data)); } // read from MMIO register -static GFXINLINE uint32_t mmio_read(uint32_t reg) { - uint32_t *ptr = (uint32_t*)reg; - uint32_t data; +static GFXINLINE gU32 mmio_read(gU32 reg) { + gU32 *ptr = (gU32*)reg; + gU32 data; asm volatile("ldr %[data], [%[reg]]" : [data]"=r"(data) : [reg]"r"(ptr)); return data; diff --git a/boards/base/RaspberryPi/FreeRTOS/uart.c b/boards/base/RaspberryPi/FreeRTOS/uart.c index 92f837e7..ef040fca 100644 --- a/boards/base/RaspberryPi/FreeRTOS/uart.c +++ b/boards/base/RaspberryPi/FreeRTOS/uart.c @@ -46,12 +46,12 @@ enum { /* * delay function - * int32_t delay: number of cycles to delay + * gI32 delay: number of cycles to delay * * This just loops <delay> times in a way that the compiler * wont optimize away. */ -static void delay(int32_t count) { +static void delay(gI32 count) { asm volatile("__delay_%=: subs %[count], %[count], #1; bne __delay_%=\n" : : [count]"r"(count) : "cc"); } @@ -102,9 +102,9 @@ void uart_init() { /* * Transmit a byte via UART0. - * uint8_t Byte: byte to send. + * gU8 Byte: byte to send. */ -void uart_putc(uint8_t byte) { +void uart_putc(gU8 byte) { // wait for UART to become ready to transmit while (1) { if (!(mmio_read(UART0_FR) & (1 << 5))) { diff --git a/boards/base/RaspberryPi/FreeRTOS/uart.h b/boards/base/RaspberryPi/FreeRTOS/uart.h index fe7f64aa..ca9f377e 100644 --- a/boards/base/RaspberryPi/FreeRTOS/uart.h +++ b/boards/base/RaspberryPi/FreeRTOS/uart.h @@ -12,9 +12,9 @@ void uart_init(); /* * Transmit a byte via UART0. - * uint8_t Byte: byte to send. + * gU8 Byte: byte to send. */ -void uart_putc(uint8_t byte); +void uart_putc(gU8 byte); /* * print a string to the UART one character at a time diff --git a/boards/base/RaspberryPi/board_framebuffer.h b/boards/base/RaspberryPi/board_framebuffer.h index 9a7d233b..0ca40a52 100644 --- a/boards/base/RaspberryPi/board_framebuffer.h +++ b/boards/base/RaspberryPi/board_framebuffer.h @@ -26,16 +26,16 @@ #include "rpi_mailbox.h" typedef struct FrameBufferDescription { - uint32_t width; - uint32_t height; - uint32_t vWidth; - uint32_t vHeight; - uint32_t pitch; - uint32_t bitDepth; - uint32_t x; - uint32_t y; + gU32 width; + gU32 height; + gU32 vWidth; + gU32 vHeight; + gU32 pitch; + gU32 bitDepth; + gU32 x; + gU32 y; void * pointer; - uint32_t size; + gU32 size; } FrameBufferDescription; static FrameBufferDescription FrameBufferInfo __attribute__((aligned (16))) = { 1024, 768, 1024, 768, 0, 24, 0, 0, 0, 0 }; @@ -49,7 +49,7 @@ FrameBufferInfo.vHeight = GDISP_SCREEN_HEIGHT; FrameBufferInfo.bitDepth = LLDCOLOR_BITS; - rpi_writemailbox(1, 0x40000000 + (uint32_t) &FrameBufferInfo); + rpi_writemailbox(1, 0x40000000 + (gU32) &FrameBufferInfo); if (rpi_readmailbox(1) != 0) gfxHalt("Could not set display parameters") @@ -70,12 +70,12 @@ #endif #if GDISP_NEED_CONTROL - static void board_backlight(GDisplay *g, uint8_t percent) { + static void board_backlight(GDisplay *g, gU8 percent) { (void) g; (void) percent; } - static void board_contrast(GDisplay *g, uint8_t percent) { + static void board_contrast(GDisplay *g, gU8 percent) { (void) g; (void) percent; } |