Skip to content

Commit 77a7383

Browse files
Ayush1325DhruvaG2000
authored andcommitted
Add support for beagleconnect_freedom
- Test blinky_arduino - Test hello_arduino Signed-off-by: Ayush Singh <[email protected]>
1 parent e31c81d commit 77a7383

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed

documentation/variants.md

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Once completed, continue here by adding a variant for your custom board.
99
- [X] Arduino Nano ble sense 33
1010
- [X] Arduino Nano ble 33
1111
- [X] Arduino Nano 33 iot
12+
- [X] Beagleconnect Freedom
1213

1314
## Planned Support: (TODO)
1415
- [ ] Particle Xenon
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/*
2+
* Copyright (c) 2024 Ayush Singh <[email protected]>
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
/ {
8+
zephyr,user {
9+
digital-pin-gpios = <&gpio0 18 GPIO_ACTIVE_HIGH>; /* 2.4GHz TX/RX */
10+
builtin-led-gpios = <&gpio0 18 GPIO_ACTIVE_HIGH>; /* 2.4GHz TX/RX */
11+
serials = <&uart0 &uart1>;
12+
i2cs = <&i2c0>;
13+
};
14+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/*
2+
* Copyright (c) 2024 Ayush Singh <[email protected]>
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
#pragma once
7+
8+
#define LED_BUILTIN 0
9+

0 commit comments

Comments
 (0)