summaryrefslogtreecommitdiffstats
path: root/firmware/bootloaderconfig.h
diff options
context:
space:
mode:
authorBluebie <a@creativepony.com>2013-03-04 01:08:26 +1100
committerBluebie <a@creativepony.com>2013-03-04 01:08:26 +1100
commit3ee4ba640936bd5c4a2e02309f8c863568bc828b (patch)
treed995f13da75f50554bea0a6b2927fee205f5c643 /firmware/bootloaderconfig.h
parent58a113df9678b4502f87e0e91fc01d023a59393d (diff)
downloadmicronucleus-3ee4ba640936bd5c4a2e02309f8c863568bc828b.tar.gz
micronucleus-3ee4ba640936bd5c4a2e02309f8c863568bc828b.tar.bz2
micronucleus-3ee4ba640936bd5c4a2e02309f8c863568bc828b.zip
firmware: added osccal store and retrieve code, untested
Diffstat (limited to 'firmware/bootloaderconfig.h')
-rw-r--r--firmware/bootloaderconfig.h38
1 files changed, 20 insertions, 18 deletions
diff --git a/firmware/bootloaderconfig.h b/firmware/bootloaderconfig.h
index 75ca572..1f1cb94 100644
--- a/firmware/bootloaderconfig.h
+++ b/firmware/bootloaderconfig.h
@@ -183,6 +183,7 @@ these macros are defined, the boot loader uses them.
// number of bytes before the boot loader vectors to store the tiny application vector table
#define TINYVECTOR_RESET_OFFSET 4
#define TINYVECTOR_USBPLUS_OFFSET 2
+#define TINYVECTOR_OSCCAL_OFFSET 6
#define RESET_VECTOR_OFFSET 0
#define USBPLUS_VECTOR_OFFSET 2
@@ -213,15 +214,17 @@ these macros are defined, the boot loader uses them.
// set clock prescaler to a value before running user program
//#define SET_CLOCK_PRESCALER _BV(CLKPS0) /* divide by 2 for 8mhz */
-
-/*#if LOW_POWER_MODE
+#define bootLoaderInit()
+#define bootLoaderExit()
+#define bootLoaderCondition() (idlePolls < (AUTO_EXIT_MS * 10UL))
+#if LOW_POWER_MODE
// only starts bootloader if USB D- is pulled high on startup - by putting your pullup in to an external connector
// you can avoid ever entering an out of spec clock speed or waiting on bootloader when that pullup isn't there
#define bootLoaderStartCondition() \
(PINB & (_BV(USB_CFG_DMINUS_BIT) | _BV(USB_CFG_DMINUS_BIT))) == _BV(USB_CFG_DMINUS_BIT)
#else
#define bootLoaderStartCondition() 1
-#endif*/
+#endif
/* ----------------------- Optional MCU Description ------------------------ */
@@ -241,25 +244,24 @@ these macros are defined, the boot loader uses them.
/* #define USB_INTR_VECTOR INT0_vect */
// todo: change to pin 5
-#define DEUXVIS_JUMPER_PIN 5
-#define digitalRead(pin) ((PINB >> pin) & 0b00000001)
-#define bootLoaderStartCondition() (!digitalRead(DEUXVIS_JUMPER_PIN))
-#define bootLoaderCondition() (1)
+//#define DEUXVIS_JUMPER_PIN 5
+//#define digitalRead(pin) ((PINB >> pin) & 0b00000001)
+//#define bootLoaderStartCondition() (!digitalRead(DEUXVIS_JUMPER_PIN))
+//#define bootLoaderCondition() (1)
#ifndef __ASSEMBLER__ /* assembler cannot parse function definitions */
-static inline void bootLoaderInit(void) {
- // DeuxVis pin-5 pullup
- DDRB |= _BV(DEUXVIS_JUMPER_PIN); // is an input
- PORTB |= _BV(DEUXVIS_JUMPER_PIN); // has pullup enabled
- _delay_ms(10);
-}
-
-static inline void bootLoaderExit(void) {
+//static inline void bootLoaderInit(void) {
+// // DeuxVis pin-5 pullup
+// DDRB |= _BV(DEUXVIS_JUMPER_PIN); // is an input
+// PORTB |= _BV(DEUXVIS_JUMPER_PIN); // has pullup enabled
+// _delay_ms(10);
+//}
+//static inline void bootLoaderExit(void) {
// DeuxVis pin-5 pullup
- PORTB = 0;
- DDRB = 0;
-}
+// PORTB = 0;
+// DDRB = 0;
+//}
#endif /* __ASSEMBLER__ */