Skip to content

Commit 3cd22fd

Browse files
committed
boards: Add configuration files for Quill nRF52840 Mesh
- Introduced board.cmake, board.h, board.mk, and pinconfig.c to define the Quill nRF52840 Mesh board configurations. - Set MCU variant and sub-variant to nrf52840. - Defined LED and button configurations, along with USB and UF2 settings. Signed-off-by: ChihoSin chihosin@icloud.com
1 parent 6c68d24 commit 3cd22fd

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed
File renamed without changes.

src/boards/quill_nrf52840_r1l/board.h renamed to src/boards/fobe_quill_nrf52840_mesh/board.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* The MIT License (MIT)
33
*
4-
* Copyright (c) 2024 ChihoSin for FoBE
4+
* Copyright (c) 2025 FoBE Studio.
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy
77
* of this software and associated documentation files (the "Software"), to deal
@@ -22,8 +22,8 @@
2222
* THE SOFTWARE.
2323
*/
2424

25-
#ifndef _QUILL_NRF52840_R1L_H_
26-
#define _QUILL_NRF52840_R1L_H_
25+
#ifndef _FOBE_QUILL_NRF52840_MESH_H_
26+
#define _FOBE_QUILL_NRF52840_MESH_H_
2727

2828
#define _PINNUM(port, pin) ((port)*32 + (pin))
2929

@@ -48,7 +48,7 @@
4848
// BLE OTA
4949
//--------------------------------------------------------------------+
5050
#define BLEDIS_MANUFACTURER "FoBE Studio"
51-
#define BLEDIS_MODEL "Quill nRF52840 R1L"
51+
#define BLEDIS_MODEL "Quill nRF52840"
5252

5353
//--------------------------------------------------------------------+
5454
// USB
@@ -60,10 +60,10 @@
6060
//--------------------------------------------------------------------+
6161
// UF2
6262
//--------------------------------------------------------------------+
63-
#define UF2_PRODUCT_NAME "Quill nRF52840 R1L"
63+
#define UF2_PRODUCT_NAME "FoBE Quill nRF52840 Mesh"
6464
#define UF2_VOLUME_LABEL "Quill Boot"
65-
#define UF2_BOARD_ID "quill_nrf52840_r1l"
66-
#define UF2_INDEX_URL "https://wiki.fobestudio.com/development-board/quill/fobe-quill-nrf52840-r1l/overview/"
65+
#define UF2_BOARD_ID "f1101_r1a"
66+
#define UF2_INDEX_URL "https://wiki.fobestudio.com/product/f1101"
6767

6868

69-
#endif /* _QUILL_NRF52840_R1L_H_ */
69+
#endif /* _FOBE_QUILL_NRF52840_MESH_H_ */
File renamed without changes.

src/boards/quill_nrf52840_r1l/pinconfig.c renamed to src/boards/fobe_quill_nrf52840_mesh/pinconfig.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ const uint32_t bootloaderConfig[] =
1616

1717
0, 0, 0, 0, 0, 0, 0, 0
1818
/* CF2 END */
19-
};
19+
};

0 commit comments

Comments
 (0)