This repository was archived by the owner on Nov 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcore.h
87 lines (71 loc) · 2.51 KB
/
core.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*
Copyright 2015 Quazar Technologies Pvt. Ltd.
Copyright 2015 Chintalagiri Shashank
This file is part of
Embedded bootstraps : hal-uC
This library is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @file hal_uc_core.h
* @brief HAL for uC Core peripherals
*
* This file is the hardware abstraction layer for all core uC peripherals
* and functions.
*/
#ifndef HAL_UC_CORE_H
#define HAL_UC_CORE_H
#include "map.h"
/**
* @name Watchdog API Functions
* Various functions to control the primary watchdog. Implementation is
* left to the implementation layer at `core_impl.h`.
*/
/**@{*/
/** Hold the watchdog and prevent reset due to watchdog timeout.*/
static inline void watchdog_hold(void);
/** Start the watchdog timer.*/
static inline void watchdog_start(void);
/** Clear the watchdog timer.*/
void watchdog_clear(void);
/**
* Initialize the watchdog timer to some default interval.
*/
void watchdog_init(void);
/**@}*/
/**
* @name Power Management API Functions
* Various functions to control the power system. Implementation is
* left to the implementation layer at `core_impl.h`.
*/
/**@{*/
/** Set core voltage to the highest possible. The use of low power
modes will require exploring the common motifs of power system
selection and improving this API. For now, we don't care. Since this
is a one-off thing, we'll also make it a regular function and not
bother about the overhead. */
void power_set_full(void);
/**@}*/
/**
* @name Clock Management API Functions
* Various functions to control the clock system. Implementation is
* left to the implementation layer at `core_impl.h`.
*/
/**@{*/
/** Set clock to some sane default. For now, we don't care about the
* details. Since this is a one-off thing, we'll also make it a regular
* function and not bother about the overhead.
*/
void clock_set_default(void);
/**@}*/
// Set up the implementation
#include "uc/core_impl.h"
#endif