-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathempty_3.c
More file actions
153 lines (129 loc) · 4.99 KB
/
empty_3.c
File metadata and controls
153 lines (129 loc) · 4.99 KB
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/*
* Copyright (c) 2015-2017, Texas Instruments Incorporated
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* * Neither the name of Texas Instruments Incorporated nor the names of
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* ======== empty.c ========
*/
/* For usleep() */
#include <unistd.h>
#include <stdint.h>
#include <stddef.h>
/* Driver Header files */
#include <ti/drivers/GPIO.h>
// #include <ti/drivers/I2C.h>
// #include <ti/drivers/SDSPI.h>
// #include <ti/drivers/SPI.h>
// #include <ti/drivers/UART.h>
// #include <ti/drivers/Watchdog.h>
/* Drivers and macros from SC */
#include "scif.h"
#define BV(x) (1 << (x))
/* Board Header file */
#include "Board.h"
#include <ti/sysbios/knl/Semaphore.h>
#include <ti/sysbios/BIOS.h>
// Variaveis do Semaforo - struct e handler
Semaphore_Struct semMainLoop;
Semaphore_Handle hSemMainLoop;
/* Funcoes para processar o sinal de alerta do SC */
void processTaskAlert(void)
{
// Limpa a flag de interrupcao fonte da interrupcao
scifClearAlertIntSource();
// Atribui o valor de FlagHIGH do SC para a variavel high
uint8_t high = scifTaskData.triggerLed.state.FlagHIGH;
// Atualiza o estado do led vermelho de acordo com a flag
GPIO_write(Board_GPIO_RLED, high);
// Confirma o evento ao framework
scifAckAlertEvents();
}
/* Callback Functions */
void scCtrlReadyCallback(void)
{
} // scCtrlReadyCallback
void scTaskAlertCallback(void)
{
//Posta no Semaforo do main sempre que houver um alerta
Semaphore_post(hSemMainLoop);
} // scTaskAlertCallback
/*
* ======== mainThread ========
*/
void *ThresholdScThread(void *arg0)
{
// Inicializacao e configuracao do Semaforo
//Inicializacao dos parametros padroes
Semaphore_Params semParams;
Semaphore_Params_init(&semParams);
// Construcao da estrutura do semaforo com os parametros
Semaphore_construct(&semMainLoop, 0, &semParams);
// Armazena a estrutura no "tratador"
hSemMainLoop = Semaphore_handle(&semMainLoop);
// Inicializa o Sensor Controller
//Inicializa a OSAL (Operating System Abstraction Layer) do framework scif
scifOsalInit();
//Registra as duas funções de callback para os sinais de Interrupcao Control READY e Task ALERT do SC
scifOsalRegisterCtrlReadyCallback(scCtrlReadyCallback);
scifOsalRegisterTaskAlertCallback(scTaskAlertCallback);
//Inicializa o SC com o driver gerado a partir do SC
scifInit(&scifDriverSetup);
// Configura o intervalo para a tarefa do Sensor Controller para 1 segundo
//Bits 31:16 = segundos
//Bits 15:0 = 1/65536 de um segundo
uint32_t rtc_Hz = 1; // 1Hz RTC
scifStartRtcTicksNow(0x00010000 / rtc_Hz);
// Configura a tarefa do Sensor Controller: Inicializa um valor de threshold (800)
scifTaskData.triggerLed.cfg.threshold = 600;
// Inicializa a tarefa do Sensor Controller
// As funções scif lidam com IDs de tarefas do SC e acessam um vetor de bit como argumento
//O ID está definido em scif.h
scifStartTasksNbl(BV(SCIF_TRIGGER_LED_TASK_ID));
/* 1 second delay */
uint32_t time = 1;
/* Call driver init functions */
GPIO_init();
// I2C_init();
// SDSPI_init();
// SPI_init();
// UART_init();
// Watchdog_init();
/* Configure the LED pin */
GPIO_setConfig(Board_GPIO_LED0, GPIO_CFG_OUT_STD | GPIO_CFG_OUT_LOW);
/* Turn off user LED */
GPIO_write(Board_GPIO_LED0, Board_GPIO_LED_OFF);
while (1)
{
// Aguarda indefinidamente até que haja uma postagem no semaforo
Semaphore_pend(hSemMainLoop, BIOS_WAIT_FOREVER);
// Chame a funcao para executar o processamento
processTaskAlert();
}
}