aboutsummaryrefslogtreecommitdiff
path: root/cc3200
diff options
context:
space:
mode:
authordanicampora2015-02-25 23:25:23 +0100
committerdanicampora2015-02-25 23:25:23 +0100
commitf3661d4100299a136bc33cfccc7b2cade0d7da21 (patch)
tree492dadc1bce0ef515beb41772ef03dd7a2469491 /cc3200
parent7a074a14ced0c9ea890793aa7dc43c896cfdf9b9 (diff)
cc3200: Change PRCM_PeriphRegs_t fields to unsigned char.
This helps saving ~300 bytes. Thanks to dpgeorge.
Diffstat (limited to 'cc3200')
-rw-r--r--cc3200/hal/prcm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cc3200/hal/prcm.h b/cc3200/hal/prcm.h
index 067c66cba..0caa666ee 100644
--- a/cc3200/hal/prcm.h
+++ b/cc3200/hal/prcm.h
@@ -59,8 +59,8 @@ extern "C"
typedef struct _PRCM_PeripheralRegs_
{
-unsigned long ulClkReg;
-unsigned long ulRstReg;
+unsigned char ulClkReg;
+unsigned char ulRstReg;
}PRCM_PeriphRegs_t;