EXT wakeup test. Slow down serial baudrate.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3361 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
5a3a608ad9
commit
bd339dfa99
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
# Compiler options here.
|
# Compiler options here.
|
||||||
ifeq ($(USE_OPT),)
|
ifeq ($(USE_OPT),)
|
||||||
USE_OPT = -O2 -ggdb -fomit-frame-pointer -falign-functions=16
|
USE_OPT = -O0 -ggdb -fomit-frame-pointer -falign-functions=16
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# C++ specific options here (added to USE_OPT).
|
# C++ specific options here (added to USE_OPT).
|
||||||
|
|
|
@ -289,7 +289,7 @@
|
||||||
* default configuration.
|
* default configuration.
|
||||||
*/
|
*/
|
||||||
#if !defined(SERIAL_DEFAULT_BITRATE) || defined(__DOXYGEN__)
|
#if !defined(SERIAL_DEFAULT_BITRATE) || defined(__DOXYGEN__)
|
||||||
#define SERIAL_DEFAULT_BITRATE 115200
|
#define SERIAL_DEFAULT_BITRATE 57600
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -100,7 +100,6 @@ static void cmd_sleep(BaseChannel *chp, int argc, char *argv[]){
|
||||||
|
|
||||||
chThdSleepMilliseconds(200); // time to print out message in terminal
|
chThdSleepMilliseconds(200); // time to print out message in terminal
|
||||||
extChannelEnable(&EXTD1, 10);
|
extChannelEnable(&EXTD1, 10);
|
||||||
chThdSleepMilliseconds(5);
|
|
||||||
|
|
||||||
PWR->CR |= (PWR_CR_LPDS | PWR_CR_CSBF | PWR_CR_CWUF);
|
PWR->CR |= (PWR_CR_LPDS | PWR_CR_CSBF | PWR_CR_CWUF);
|
||||||
PWR->CR &= ~PWR_CR_PDDS; // explicit clear PDDS, just to be safe
|
PWR->CR &= ~PWR_CR_PDDS; // explicit clear PDDS, just to be safe
|
||||||
|
@ -160,5 +159,6 @@ int main(void) {
|
||||||
while (TRUE) {
|
while (TRUE) {
|
||||||
chThdSleepMilliseconds(100);
|
chThdSleepMilliseconds(100);
|
||||||
palTogglePad(IOPORT3, GPIOC_LED);
|
palTogglePad(IOPORT3, GPIOC_LED);
|
||||||
|
chThdExit(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue