-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
Copy pathWiseMcuSpam.cpp
237 lines (200 loc) · 6.59 KB
/
WiseMcuSpam.cpp
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
/*
* Copyright (c) 2023 Project CHIP Authors
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <platform/silabs/platformAbstraction/SilabsPlatform.h>
#include <sl_si91x_common_flash_intf.h>
#include <FreeRTOS.h>
#include <task.h>
#include <app/icd/server/ICDServerConfig.h>
#include <lib/support/CodeUtils.h>
#include <lib/support/CodeUtils.h>
#if SILABS_LOG_ENABLED
#include "silabs_utils.h"
#endif // SILABS_LOG_ENABLED
// TODO add includes ?
extern "C" {
#include "em_core.h"
#if defined(SL_SI91X_BOARD_INIT)
#include "rsi_board.h"
#endif // SL_SI91X_BOARD_INIT
#include "sl_event_handler.h"
#include "sl_si91x_hal_soc_soft_reset.h"
#ifdef SL_CATALOG_SIMPLE_BUTTON_PRESENT
#include "sl_si91x_button.h"
#include "sl_si91x_button_pin_config.h"
#endif // SL_CATALOG_SIMPLE_BUTTON_PRESENT
#ifdef ENABLE_WSTK_LEDS
#if (defined(SL_MATTER_RGB_LED_ENABLED) && SL_MATTER_RGB_LED_ENABLED == 1)
#include "sl_si91x_rgb_led.h"
#include "sl_si91x_rgb_led_config.h"
#include "sl_si91x_rgb_led_instances.h"
#define SL_LED_COUNT SL_SI91X_RGB_LED_COUNT
const sl_rgb_led_t * ledPinArray[SL_LED_COUNT] = { &led_led0 };
#define SL_RGB_LED_INSTANCE(n) (ledPinArray[n])
#else
#include "sl_si91x_led.h"
#include "sl_si91x_led_config.h"
#include "sl_si91x_led_instances.h"
#define SL_LED_COUNT SL_SI91x_LED_COUNT
uint8_t ledPinArray[SL_LED_COUNT] = { SL_LED_LED0_PIN, SL_LED_LED1_PIN };
#endif // SL_MATTER_RGB_LED_ENABLED
#endif // ENABLE_WSTK_LEDS
#if CHIP_CONFIG_ENABLE_ICD_SERVER == 0
void soc_pll_config(void);
#endif // CHIP_CONFIG_ENABLE_ICD_SERVER
}
#ifdef SL_CATALOG_SYSTEMVIEW_TRACE_PRESENT
#include "SEGGER_SYSVIEW.h"
#endif
#if SILABS_LOG_OUT_UART || ENABLE_CHIP_SHELL
#include "uart.h"
#endif
namespace chip {
namespace DeviceLayer {
namespace Silabs {
namespace {
#ifdef SL_CATALOG_SIMPLE_BUTTON_PRESENT
uint8_t sButtonStates[SL_SI91x_BUTTON_COUNT] = { 0 };
#endif // SL_CATALOG_SIMPLE_BUTTON_PRESENT
#if CHIP_CONFIG_ENABLE_ICD_SERVER
bool btn0_pressed = false;
#endif /* SL_ICD_ENABLED */
} // namespace
SilabsPlatform SilabsPlatform::sSilabsPlatformAbstractionManager;
SilabsPlatform::SilabsButtonCb SilabsPlatform::mButtonCallback = nullptr;
CHIP_ERROR SilabsPlatform::Init(void)
{
mButtonCallback = nullptr;
// TODO: Setting the highest priority for SVCall_IRQn to avoid the HardFault issue
NVIC_SetPriority(SVCall_IRQn, CORE_INTERRUPT_HIGHEST_PRIORITY);
#if CHIP_CONFIG_ENABLE_ICD_SERVER == 0
// Configuration the clock rate
soc_pll_config();
#endif // CHIP_CONFIG_ENABLE_ICD_SERVER
#if SILABS_LOG_ENABLED
silabsInitLog();
#endif
#if SILABS_LOG_OUT_UART || ENABLE_CHIP_SHELL
uartConsoleInit();
#endif
#ifdef SL_CATALOG_SYSTEMVIEW_TRACE_PRESENT
SEGGER_SYSVIEW_Conf();
#endif
return CHIP_NO_ERROR;
}
#ifdef ENABLE_WSTK_LEDS
void SilabsPlatform::InitLed(void)
{
// TODO
#if defined(SL_SI91X_BOARD_INIT)
RSI_Board_Init();
#endif // SL_SI91X_BOARD_INIT
SilabsPlatformAbstractionBase::InitLed();
}
CHIP_ERROR SilabsPlatform::SetLed(bool state, uint8_t led)
{
VerifyOrReturnError(led < SL_LED_COUNT, CHIP_ERROR_INVALID_ARGUMENT);
#if (defined(SL_MATTER_RGB_LED_ENABLED) && SL_MATTER_RGB_LED_ENABLED == 1)
(state) ? sl_si91x_simple_rgb_led_on(SL_RGB_LED_INSTANCE(led)) : sl_si91x_simple_rgb_led_off(SL_RGB_LED_INSTANCE(led));
#else
(state) ? sl_si91x_led_set(ledPinArray[led]) : sl_si91x_led_clear(ledPinArray[led]);
#endif // defined(SL_MATTER_RGB_LED_ENABLED) && SL_MATTER_RGB_LED_ENABLED
return CHIP_NO_ERROR;
}
bool SilabsPlatform::GetLedState(uint8_t led)
{
// TODO
return SilabsPlatformAbstractionBase::GetLedState(led);
}
CHIP_ERROR SilabsPlatform::ToggleLed(uint8_t led)
{
VerifyOrReturnError(led < SL_LED_COUNT, CHIP_ERROR_INVALID_ARGUMENT);
#if (defined(SL_MATTER_RGB_LED_ENABLED) && SL_MATTER_RGB_LED_ENABLED == 1)
sl_si91x_simple_rgb_led_toggle(SL_RGB_LED_INSTANCE(led));
#else
sl_si91x_led_toggle(ledPinArray[led]);
#endif // defined(SL_MATTER_RGB_LED_ENABLED) && SL_MATTER_RGB_LED_ENABLED
return CHIP_NO_ERROR;
}
#endif // ENABLE_WSTK_LEDS
void SilabsPlatform::StartScheduler()
{
vTaskStartScheduler();
}
#ifdef SL_CATALOG_SIMPLE_BUTTON_PRESENT
extern "C" void sl_button_on_change(uint8_t btn, uint8_t btnAction)
{
#if SL_ICD_ENABLED
// This is to make sure we get a one-press and one-release event for the button
// Hardware modification will be required for this to work permanently
// Currently the btn0 is pull-up resistor due to which is sends a release event on every wakeup
if (btn == SL_BUTTON_BTN0_NUMBER)
{
// if the btn was not pressed and only a release event came, ignore it
// if the btn was already pressed and another press event came, ignore it
// essentially, if both of them are in the same state then ignore it.
VerifyOrReturn(btnAction != btn0_pressed);
if ((btnAction == BUTTON_PRESSED) && (btn0_pressed == false))
{
btn0_pressed = true;
}
else if ((btnAction == BUTTON_RELEASED) && (btn0_pressed == true))
{
btn0_pressed = false;
}
}
#endif // SL_ICD_ENABLED
if (Silabs::GetPlatform().mButtonCallback == nullptr)
{
return;
}
if (btn < SL_SI91x_BUTTON_COUNT)
{
sButtonStates[btn] = btnAction;
}
Silabs::GetPlatform().mButtonCallback(btn, btnAction);
}
uint8_t SilabsPlatform::GetButtonState(uint8_t button)
{
return (button < SL_SI91x_BUTTON_COUNT) ? sButtonStates[button] : 0;
}
#else
uint8_t SilabsPlatform::GetButtonState(uint8_t button)
{
return 0;
}
#endif // SL_CATALOG_SIMPLE_BUTTON_PRESENT
void SilabsPlatform::SoftwareReset()
{
sl_si91x_soc_nvic_reset();
}
CHIP_ERROR SilabsPlatform::FlashInit()
{
return CHIP_NO_ERROR;
}
CHIP_ERROR SilabsPlatform::FlashErasePage(uint32_t addr)
{
rsi_flash_erase_sector((uint32_t *) addr);
return CHIP_NO_ERROR;
}
CHIP_ERROR SilabsPlatform::FlashWritePage(uint32_t addr, const uint8_t * data, size_t size)
{
rsi_flash_write((uint32_t *) addr, (unsigned char *) data, size);
return CHIP_NO_ERROR;
}
} // namespace Silabs
} // namespace DeviceLayer
} // namespace chip