Skip to content

Add support for beagleconnect_freedom #92

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions documentation/variants.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Once completed, continue here by adding a variant for your custom board.
- [X] Arduino Nano ble sense 33
- [X] Arduino Nano ble 33
- [X] Arduino Nano 33 iot
- [X] Beagleconnect Freedom

## Planned Support: (TODO)
- [ ] Particle Xenon
Expand Down
14 changes: 14 additions & 0 deletions variants/beagleconnect_freedom/beagleconnect_freedom.overlay
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/*
* Copyright (c) 2024 Ayush Singh <[email protected]>
*
* SPDX-License-Identifier: Apache-2.0
*/

/ {
zephyr,user {
digital-pin-gpios = <&gpio0 18 GPIO_ACTIVE_HIGH>; /* 2.4GHz TX/RX */
builtin-led-gpios = <&gpio0 18 GPIO_ACTIVE_HIGH>; /* 2.4GHz TX/RX */
serials = <&uart0 &uart1>;
i2cs = <&i2c0>;
};
};
9 changes: 9 additions & 0 deletions variants/beagleconnect_freedom/variants.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/*
* Copyright (c) 2024 Ayush Singh <[email protected]>
*
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once

#define LED_BUILTIN 0

Loading