]> begriffs open source - cmsis-freertos/blob - Demo/CORTEX_LM3S811_IAR/LuminaryCode/watchdog.h
Update README.md - branch main is now the base branch
[cmsis-freertos] / Demo / CORTEX_LM3S811_IAR / LuminaryCode / watchdog.h
1 //*****************************************************************************
2 //
3 // watchdog.h - Prototypes for the Watchdog Timer API
4 //
5 // Copyright (c) 2005,2006 Luminary Micro, Inc.  All rights reserved.
6 //
7 // Software License Agreement
8 //
9 // Luminary Micro, Inc. (LMI) is supplying this software for use solely and
10 // exclusively on LMI's Stellaris Family of microcontroller products.
11 //
12 // The software is owned by LMI and/or its suppliers, and is protected under
13 // applicable copyright laws.  All rights are reserved.  Any use in violation
14 // of the foregoing restrictions may subject the user to criminal sanctions
15 // under applicable laws, as well as to civil liability for the breach of the
16 // terms and conditions of this license.
17 //
18 // THIS SOFTWARE IS PROVIDED "AS IS".  NO WARRANTIES, WHETHER EXPRESS, IMPLIED
19 // OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF
20 // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.
21 // LMI SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR
22 // CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.
23 //
24 // This is part of revision 991 of the Stellaris Driver Library.
25 //
26 //*****************************************************************************
27
28 #ifndef __WATCHDOG_H__
29 #define __WATCHDOG_H__
30
31 #ifdef __cplusplus
32 extern "C"
33 {
34 #endif
35
36 //*****************************************************************************
37 //
38 // Prototypes for the APIs.
39 //
40 //*****************************************************************************
41 extern tBoolean WatchdogRunning(unsigned long ulBase);
42 extern void WatchdogEnable(unsigned long ulBase);
43 extern void WatchdogResetEnable(unsigned long ulBase);
44 extern void WatchdogResetDisable(unsigned long ulBase);
45 extern void WatchdogLock(unsigned long ulBase);
46 extern void WatchdogUnlock(unsigned long ulBase);
47 extern tBoolean WatchdogLockState(unsigned long ulBase);
48 extern void WatchdogReloadSet(unsigned long ulBase, unsigned long ulLoadVal);
49 extern unsigned long WatchdogReloadGet(unsigned long ulBase);
50 extern unsigned long WatchdogValueGet(unsigned long ulBase);
51 extern void WatchdogIntRegister(unsigned long ulBase, void(*pfnHandler)(void));
52 extern void WatchdogIntUnregister(unsigned long ulBase);
53 extern void WatchdogIntEnable(unsigned long ulBase);
54 extern unsigned long WatchdogIntStatus(unsigned long ulBase, tBoolean bMasked);
55 extern void WatchdogIntClear(unsigned long ulBase);
56 extern void WatchdogStallDisable(unsigned long ulBase);
57 extern void WatchdogStallDisable(unsigned long ulBase);
58
59 #ifdef __cplusplus
60 }
61 #endif
62
63 #endif // __WATCHDOG_H__