Skip to content

Commit 956de5d

Browse files
committed
Release 1.0.0
1 parent 7200168 commit 956de5d

File tree

12,124 files changed

+5145077
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

12,124 files changed

+5145077
-0
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.a filter=lfs diff=lfs merge=lfs -text

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.DS_store
2+
package/gen
3+
package/gen_gsdk*
4+
package/install_host*
5+
installed.json

CODEOWNERS

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Arduino Core code owners
2+
* @tajozsi

boards.txt

+630
Large diffs are not rendered by default.

bootloaders/bg27-devkit-bootloader-apploader.hex

+4,298
Large diffs are not rendered by default.

bootloaders/bgm220-explorer-kit-ble-bootloader-apploader.hex

+4,260
Large diffs are not rendered by default.

bootloaders/sparkfun-thingplus-ble-bootloader-apploader.hex

+4,455
Large diffs are not rendered by default.

bootloaders/sparkfun-thingplus-matter-bootloader-storage-internal-single-512k.hex

+680
Large diffs are not rendered by default.

bootloaders/xg24-explorer-kit-ble-bootloader-apploader.hex

+4,398
Large diffs are not rendered by default.

bootloaders/xg24-explorer-kit-bootloader-storage-internal-single-512k.hex

+674
Large diffs are not rendered by default.

cores/silabs/Arduino.h

+133
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
/*
2+
* This file is part of the Silicon Labs Arduino Core
3+
*
4+
* The MIT License (MIT)
5+
*
6+
* Copyright 2023 Silicon Laboratories Inc. www.silabs.com
7+
*
8+
* Permission is hereby granted, free of charge, to any person obtaining a copy
9+
* of this software and associated documentation files (the "Software"), to deal
10+
* in the Software without restriction, including without limitation the rights
11+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12+
* copies of the Software, and to permit persons to whom the Software is
13+
* furnished to do so, subject to the following conditions:
14+
*
15+
* The above copyright notice and this permission notice shall be included in
16+
* all copies or substantial portions of the Software.
17+
*
18+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24+
* THE SOFTWARE.
25+
*/
26+
27+
#ifndef ARDUINO_H
28+
#define ARDUINO_H
29+
30+
#include <cmath>
31+
#include <algorithm>
32+
#include "FreeRTOS.h"
33+
#include "FreeRTOSConfig.h"
34+
#include "task.h"
35+
#include "arduino_variant.h"
36+
37+
extern "C" {
38+
#include "sl_component_catalog.h"
39+
#include "sl_system_init.h"
40+
#if defined(SL_CATALOG_POWER_MANAGER_PRESENT)
41+
#include "sl_power_manager.h"
42+
#endif // SL_CATALOG_POWER_MANAGER_PRESENT
43+
#if defined(SL_CATALOG_KERNEL_PRESENT)
44+
#include "sl_system_kernel.h"
45+
#else // SL_CATALOG_KERNEL_PRESENT
46+
#include "sl_system_process_action.h"
47+
#endif // SL_CATALOG_KERNEL_PRESENT
48+
49+
#include "em_common.h"
50+
#include "app_assert.h"
51+
#include "sl_bluetooth.h"
52+
#include "em_gpio.h"
53+
#include "app_log.h"
54+
#include "psa_crypto_core.h"
55+
#include "sl_udelay.h"
56+
}
57+
58+
#ifdef ARDUINO_MATTER
59+
#include "efr32_utils.h"
60+
#endif // ARDUINO_MATTER
61+
62+
typedef uint16_t word;
63+
typedef uint8_t byte;
64+
typedef bool boolean;
65+
66+
#include "wiring.h"
67+
#include "wiring_private.h"
68+
#include "pins_arduino.h"
69+
#include "binary.h"
70+
#include "WCharacter.h"
71+
#include "WMath.h"
72+
#include "stdlib_noniso.h"
73+
#include "WString.h"
74+
#include "HardwareSerial.h"
75+
#include "Wire.h"
76+
#include "SPI.h"
77+
#include "adc.h"
78+
#include "pwm.h"
79+
#include "silabs_additional.h"
80+
81+
#ifdef NUM_DAC_HW
82+
#include "dac.h"
83+
#endif // NUM_DAC_HW
84+
85+
using std::round;
86+
using std::isinf;
87+
using std::isnan;
88+
using std::min;
89+
using std::max;
90+
using std::abs;
91+
92+
#define constrain(amt, low, high) ((amt) < (low) ? (low) : ((amt) > (high) ? (high) : (amt)))
93+
#define radians(deg) ((deg) * DEG_TO_RAD)
94+
#define degrees(rad) ((rad) * RAD_TO_DEG)
95+
#define sq(x) ((x) * (x))
96+
97+
#define bit(b) (1UL << (b))
98+
#define lowByte(w) ((uint8_t) ((w) & 0xff))
99+
#define highByte(w) ((uint8_t) ((w) >> 8))
100+
#define bitRead(value, bit) (((value) >> (bit)) & 0x01)
101+
#define bitSet(value, bit) ((value) |= (1UL << (bit)))
102+
#define bitClear(value, bit) ((value) &= ~(1UL << (bit)))
103+
#define bitWrite(value, bit, bitvalue) (bitvalue ? bitSet(value, bit) : bitClear(value, bit))
104+
105+
#define interrupts() __enable_irq()
106+
#define noInterrupts() __disable_irq()
107+
108+
extern HardwareSerial Serial;
109+
extern TwoWire Wire;
110+
extern SPIClass SPI;
111+
extern AdcClass ADC;
112+
extern PwmClass PWM;
113+
114+
#if (NUM_HW_SERIAL > 1)
115+
extern HardwareSerial Serial1;
116+
#endif // (NUM_HW_SERIAL > 1)
117+
118+
#if (NUM_HW_SPI > 1)
119+
extern SPIClass SPI1;
120+
#endif // (NUM_HW_SPI > 1)
121+
122+
#if (NUM_DAC_HW > 0)
123+
extern DacClass DAC_0;
124+
#endif // (NUM_DAC_HW > 0)
125+
126+
#if (NUM_DAC_HW > 1)
127+
extern DacClass DAC_1;
128+
#endif // (NUM_DAC_HW > 1)
129+
130+
void setup();
131+
void loop();
132+
133+
#endif // ARDUINO_H

cores/silabs/HardwareSerial.cpp

+179
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,179 @@
1+
/*
2+
* This file is part of the Silicon Labs Arduino Core
3+
*
4+
* The MIT License (MIT)
5+
*
6+
* Copyright 2023 Silicon Laboratories Inc. www.silabs.com
7+
*
8+
* Permission is hereby granted, free of charge, to any person obtaining a copy
9+
* of this software and associated documentation files (the "Software"), to deal
10+
* in the Software without restriction, including without limitation the rights
11+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12+
* copies of the Software, and to permit persons to whom the Software is
13+
* furnished to do so, subject to the following conditions:
14+
*
15+
* The above copyright notice and this permission notice shall be included in
16+
* all copies or substantial portions of the Software.
17+
*
18+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24+
* THE SOFTWARE.
25+
*/
26+
27+
#include <cstdarg>
28+
#include "HardwareSerial.h"
29+
#include "em_usart.h"
30+
#include "sl_iostream.h"
31+
#include "sl_iostream_init_usart_instances.h"
32+
33+
HardwareSerial::HardwareSerial(sl_iostream_t* stream,
34+
sl_iostream_uart_t* instance,
35+
void(*baud_rate_set_fn)(uint32_t baudrate),
36+
void(*init_fn)(void),
37+
void(*deinit_fn)(void),
38+
void(*serial_event_fn)(void)) :
39+
serial_mutex(nullptr),
40+
initialized(true)
41+
{
42+
this->serial_mutex = xSemaphoreCreateMutexStatic(&this->serial_mutex_buf);
43+
configASSERT(this->serial_mutex);
44+
this->baud_rate_set_fn = baud_rate_set_fn;
45+
this->init_fn = init_fn;
46+
this->deinit_fn = deinit_fn;
47+
this->stream_handle = stream;
48+
this->instance_handle = instance;
49+
this->serial_event_fn = serial_event_fn;
50+
}
51+
52+
void HardwareSerial::begin(unsigned long baudrate)
53+
{
54+
if (this->initialized) {
55+
return;
56+
}
57+
//#ifndef ARDUINO_MATTER
58+
this->init_fn();
59+
this->baud_rate_set_fn(baudrate);
60+
this->initialized = true;
61+
//#endif // ARDUINO_MATTER
62+
}
63+
64+
void HardwareSerial::begin(unsigned long baudrate, uint16_t config)
65+
{
66+
(void)config;
67+
this->begin(baudrate);
68+
}
69+
70+
void HardwareSerial::end()
71+
{
72+
this->deinit_fn();
73+
this->initialized = false;
74+
}
75+
76+
int HardwareSerial::available(void)
77+
{
78+
task();
79+
return rx_buf.available();
80+
}
81+
82+
int HardwareSerial::peek(void)
83+
{
84+
return rx_buf.peek();
85+
}
86+
87+
int HardwareSerial::read(void)
88+
{
89+
task();
90+
return rx_buf.read_char();
91+
}
92+
93+
void HardwareSerial::flush(void)
94+
{
95+
;
96+
}
97+
98+
size_t HardwareSerial::write(uint8_t data)
99+
{
100+
return this->write(&data, 1);
101+
}
102+
103+
size_t HardwareSerial::write(const uint8_t* data, size_t size)
104+
{
105+
if (!this->initialized) {
106+
return 0;
107+
}
108+
sl_iostream_write(this->stream_handle, data, size);
109+
return size;
110+
}
111+
112+
void HardwareSerial::printf(const char *fmt, ...)
113+
{
114+
char message[this->printf_buffer_size];
115+
va_list args;
116+
va_start(args, fmt);
117+
vsnprintf(message, sizeof(message), fmt, args);
118+
va_end(args);
119+
this->write((uint8_t*)message, strlen(message));
120+
}
121+
122+
HardwareSerial::operator bool()
123+
{
124+
return true;
125+
}
126+
127+
void HardwareSerial::task()
128+
{
129+
if (!this->initialized) {
130+
return;
131+
}
132+
xSemaphoreTake(this->serial_mutex, portMAX_DELAY);
133+
134+
uint8_t buf[64];
135+
size_t bytes_read = 0;
136+
// Set the iostream read API to non-blocking mode
137+
sl_iostream_uart_set_read_block(this->instance_handle, false);
138+
sl_iostream_read(this->stream_handle, buf, sizeof(buf), &bytes_read);
139+
if (bytes_read > 0) {
140+
for (uint8_t i = 0; i < bytes_read; i++) {
141+
rx_buf.store_char(buf[i]);
142+
}
143+
}
144+
145+
xSemaphoreGive(this->serial_mutex);
146+
}
147+
148+
void HardwareSerial::handleSerialEvent()
149+
{
150+
if (this->available()) {
151+
this->serial_event_fn();
152+
}
153+
}
154+
155+
__attribute__((weak)) void serialEvent(void)
156+
{
157+
;
158+
}
159+
160+
HardwareSerial Serial(sl_serial_stream_handle,
161+
sl_serial_instance_handle,
162+
sl_serial_set_baud_rate,
163+
sl_serial_init,
164+
sl_serial_deinit,
165+
serialEvent);
166+
167+
#if (NUM_HW_SERIAL > 1)
168+
__attribute__((weak)) void serialEvent1(void)
169+
{
170+
;
171+
}
172+
173+
HardwareSerial Serial1(sl_serial1_stream_handle,
174+
sl_serial1_instance_handle,
175+
sl_serial1_set_baud_rate,
176+
sl_serial1_init,
177+
sl_serial1_deinit,
178+
serialEvent1);
179+
#endif // #if (NUM_HW_SERIAL > 1)

0 commit comments

Comments
 (0)