-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathutil.c
106 lines (90 loc) · 2.51 KB
/
util.c
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/**
* @file util.c
* @author Strahinja Jankovic ([email protected])
* @date 2016
* @brief Utility functions
*
* Hooks that are not needed in everyday work
*/
/* Standard includes. */
#include <stdio.h>
/* FreeRTOS includes. */
#include "FreeRTOS.h"
#include "task.h"
#include "timers.h"
/* Hardware includes. */
#include "msp430.h"
#include "hal_ETF5438A.h"
/**
* @brief Tick hook
*/
void vApplicationTickHook( void )
{
;
}
/**
* @author FreeRTOS
* @brief Configure Tick
*
* The MSP430X port uses this callback function to configure its tick interrupt.
* This allows the application to choose the tick interrupt source.
* configTICK_VECTOR must also be set in FreeRTOSConfig.h to the correct
* interrupt vector for the chosen tick interrupt source. This implementation of
* vApplicationSetupTimerInterrupt() generates the tick from timer A0, so in this
* case configTICK_VECTOR is set to TIMER0_A0_VECTOR.
*/
void vApplicationSetupTimerInterrupt( void )
{
const unsigned short usACLK_Frequency_Hz = 32768;
/* Ensure the timer is stopped. */
TA0CTL = 0;
/* Run the timer from the ACLK. */
TA0CTL = TASSEL_1;
/* Clear everything to start with. */
TA0CTL |= TACLR;
/* Set the compare match value according to the tick rate we want. */
TA0CCR0 = usACLK_Frequency_Hz / configTICK_RATE_HZ;
/* Enable the interrupts. */
TA0CCTL0 = CCIE;
/* Start up clean. */
TA0CTL |= TACLR;
/* Up mode. */
TA0CTL |= MC_1;
}
/**
* @author FreeRTOS
* @brief Idle Hook
*/
void vApplicationIdleHook( void )
{
/* Called on each iteration of the idle task. In this case the idle task
just enters a low(ish) power mode. */
__bis_SR_register( LPM0_bits + GIE );
}
/**
* @author FreeRTOS
* @brief Called when malloc fails
*/
void vApplicationMallocFailedHook( void )
{
/* Called if a call to pvPortMalloc() fails because there is insufficient
free memory available in the FreeRTOS heap. pvPortMalloc() is called
internally by FreeRTOS API functions that create tasks, queues or
semaphores. */
taskDISABLE_INTERRUPTS();
for( ;; );
}
/**
* @author FreeRTOS
* @brief Stack overflow hook
*/
void vApplicationStackOverflowHook( TaskHandle_t pxTask, char *pcTaskName )
{
( void ) pxTask;
( void ) pcTaskName;
/* Run time stack overflow checking is performed if
configconfigCHECK_FOR_STACK_OVERFLOW is defined to 1 or 2. This hook
function is called if a stack overflow is detected. */
taskDISABLE_INTERRUPTS();
for( ;; );
}