1 |
610 |
jeremybenn |
//*****************************************************************************
|
2 |
|
|
//
|
3 |
|
|
// systick.h - Prototypes for the SysTick driver.
|
4 |
|
|
//
|
5 |
|
|
// Copyright (c) 2005-2008 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 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. You may not combine
|
14 |
|
|
// this software with "viral" open-source software in order to form a larger
|
15 |
|
|
// program. Any use in violation of the foregoing restrictions may subject
|
16 |
|
|
// the user to criminal sanctions under applicable laws, as well as to civil
|
17 |
|
|
// liability for the breach of the terms and conditions of this license.
|
18 |
|
|
//
|
19 |
|
|
// THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED
|
20 |
|
|
// OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF
|
21 |
|
|
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.
|
22 |
|
|
// LMI SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR
|
23 |
|
|
// CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.
|
24 |
|
|
//
|
25 |
|
|
// This is part of revision 2523 of the Stellaris Peripheral Driver Library.
|
26 |
|
|
//
|
27 |
|
|
//*****************************************************************************
|
28 |
|
|
|
29 |
|
|
#ifndef __SYSTICK_H__
|
30 |
|
|
#define __SYSTICK_H__
|
31 |
|
|
|
32 |
|
|
//*****************************************************************************
|
33 |
|
|
//
|
34 |
|
|
// If building with a C++ compiler, make all of the definitions in this header
|
35 |
|
|
// have a C binding.
|
36 |
|
|
//
|
37 |
|
|
//*****************************************************************************
|
38 |
|
|
#ifdef __cplusplus
|
39 |
|
|
extern "C"
|
40 |
|
|
{
|
41 |
|
|
#endif
|
42 |
|
|
|
43 |
|
|
//*****************************************************************************
|
44 |
|
|
//
|
45 |
|
|
// Prototypes for the APIs.
|
46 |
|
|
//
|
47 |
|
|
//*****************************************************************************
|
48 |
|
|
extern void SysTickEnable(void);
|
49 |
|
|
extern void SysTickDisable(void);
|
50 |
|
|
extern void SysTickIntRegister(void (*pfnHandler)(void));
|
51 |
|
|
extern void SysTickIntUnregister(void);
|
52 |
|
|
extern void SysTickIntEnable(void);
|
53 |
|
|
extern void SysTickIntDisable(void);
|
54 |
|
|
extern void SysTickPeriodSet(unsigned long ulPeriod);
|
55 |
|
|
extern unsigned long SysTickPeriodGet(void);
|
56 |
|
|
extern unsigned long SysTickValueGet(void);
|
57 |
|
|
|
58 |
|
|
//*****************************************************************************
|
59 |
|
|
//
|
60 |
|
|
// Mark the end of the C bindings section for C++ compilers.
|
61 |
|
|
//
|
62 |
|
|
//*****************************************************************************
|
63 |
|
|
#ifdef __cplusplus
|
64 |
|
|
}
|
65 |
|
|
#endif
|
66 |
|
|
|
67 |
|
|
#endif // __SYSTICK_H__
|