aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32F1xx/RTC
diff options
context:
space:
mode:
authorbarthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-12-14 18:53:47 +0000
committerbarthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-12-14 18:53:47 +0000
commit8d36ff72875612d032c59a9b1518a457d89ae55f (patch)
tree352f7ea1b289d0ba5c6bcf40213ffa6474da8004 /testhal/STM32F1xx/RTC
parent4977384e9ba5710fc9b3288c1fa1745efbd9afe3 (diff)
downloadChibiOS-8d36ff72875612d032c59a9b1518a457d89ae55f.tar.gz
ChibiOS-8d36ff72875612d032c59a9b1518a457d89ae55f.tar.bz2
ChibiOS-8d36ff72875612d032c59a9b1518a457d89ae55f.zip
RTC testhal. Removed unneeded file.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3611 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32F1xx/RTC')
-rw-r--r--testhal/STM32F1xx/RTC/main.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/testhal/STM32F1xx/RTC/main.h b/testhal/STM32F1xx/RTC/main.h
deleted file mode 100644
index 31bd85a76..000000000
--- a/testhal/STM32F1xx/RTC/main.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef MAIN_H_
-#define MAIN_H_
-
-/******************************************************************
- * глобальные флаги
- ******************************************************************/
-/* надо ли фильтровать данные с датчиков */
-#define GET_FILTERED_DATA TRUE
-
-/* включить стрессовое тестирование */
-#define ENABLE_IRQ_STORM FALSE
-
-// usefull macros
-#define WATCHDOG_INIT {\
- DBGMCU->CR |= DBGMCU_CR_DBG_IWDG_STOP; /* stop watchdog timer in debugging mode */\
- IWDG->KR = 0x5555;/*unlock PR register*/\
- IWDG->PR = 16;/*set 1.6384s timeout*/\
- IWDG->KR = 0xCCCC;/*start watchdog*/}
-
-#define WATCHDOG_RELOAD {IWDG->KR = 0xAAAA;}
-
-
-#endif /* MAIN_H_ */