diff options
author | danicampora <danicampora@gmail.com> | 2015-03-17 11:05:59 +0100 |
---|---|---|
committer | danicampora <danicampora@gmail.com> | 2015-03-17 13:26:07 +0100 |
commit | 6de1b39368efc27d7a90d64f28f99b9e46422f5b (patch) | |
tree | cfb27f5e12cde99857e795ed031aed6db51a6e7c /cc3200/hal | |
parent | fcf6db06950c00d83d7d02b6ab0a23de52f27b01 (diff) | |
download | micropython-6de1b39368efc27d7a90d64f28f99b9e46422f5b.tar.gz micropython-6de1b39368efc27d7a90d64f28f99b9e46422f5b.zip |
cc3200: Make peripheral objects static.
This prevents duplication of objects in the sleep list. Also helps
with reducing the code size by ~100 bytes.
Diffstat (limited to 'cc3200/hal')
-rw-r--r-- | cc3200/hal/prcm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cc3200/hal/prcm.h b/cc3200/hal/prcm.h index 58163d7cd1..a00bf9d774 100644 --- a/cc3200/hal/prcm.h +++ b/cc3200/hal/prcm.h @@ -159,7 +159,7 @@ unsigned char ulRstReg; #define PRCM_HIB_WAKEUP_CAUSE_GPIO 0x00000004 //***************************************************************************** -// Values that can be passed to PRCMSEnableInterrupt +// Values that can be passed to PRCMIntEnable //***************************************************************************** #define PRCM_INT_SLOW_CLK_CTR 0x00004000 |