aboutsummaryrefslogtreecommitdiffstats
path: root/libmaple/bootVect.h
diff options
context:
space:
mode:
authorPerry Hung <iperry@alum.mit.edu>2010-03-31 21:29:29 -0400
committerPerry Hung <iperry@alum.mit.edu>2010-03-31 21:29:29 -0400
commit25c7ba0ed78aea0a368bc178dd720a845dd515ac (patch)
tree86be2502247dc0dd831191ae219a62875daad97c /libmaple/bootVect.h
parent4e51e057bb5a8d6b3475d2202af8a2a2caf9ba7b (diff)
downloadlibrambutan-25c7ba0ed78aea0a368bc178dd720a845dd515ac.tar.gz
librambutan-25c7ba0ed78aea0a368bc178dd720a845dd515ac.zip
Removed inttypes.h
Removed inttypes.h from libmaple. Will have another pass through to use the standard libmaple types, but will come in another commit.
Diffstat (limited to 'libmaple/bootVect.h')
-rw-r--r--libmaple/bootVect.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/libmaple/bootVect.h b/libmaple/bootVect.h
index 5bcb42b..803da03 100644
--- a/libmaple/bootVect.h
+++ b/libmaple/bootVect.h
@@ -23,7 +23,7 @@
#ifndef _BOOTVECT_H_
#define _BOOTVECT_H_
-#define BOOTLOADER_VECT_TABLE ((uint32_t*)0x20000000)
+#define BOOTLOADER_VECT_TABLE ((uint32*)0x20000000)
#ifdef __cplusplus
extern "C"{
@@ -35,12 +35,12 @@ typedef struct {
FuncPtr serial_tx_cb;
FuncPtr serial_rx_cb;
FuncPtr serial_linecoding_cb;
- uint32_t* serial_count_in;
- uint32_t* serial_count_out;
- uint8_t* serial_buffer_out;
+ uint32* serial_count_in;
+ uint32* serial_count_out;
+ uint8* serial_buffer_out;
void* linecoding;
- uint8_t major_rev;
- uint8_t minor_rev;
+ uint8 major_rev;
+ uint8 minor_rev;
void* usb_device_ptr;
void* usb_local_obj_ptr;
} BootVectTable;