Skip to content

Commit

Permalink
Merge pull request #86 from NordicSemiconductor/chore_rename_boarddef…
Browse files Browse the repository at this point in the history
…-files

Chore: Rename boarddef files
  • Loading branch information
cybic authored Mar 21, 2024
2 parents 4fef5fe + bd3ab94 commit faf619c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
"id": "ledcontrol",
"title": "LED Power",
"label": "Disable LEDs to use the GPIOs for other purposes.",
"tooltip": "The LEDs are enabled by providing 3.3 V to LED1-LED4.",
"tooltip": "The LEDs are enabled by providing 3.0 V to LED1-LED4.",
"enable": {
"pin": 45
},
Expand Down
6 changes: 3 additions & 3 deletions src/features/Configuration/boardDefinitions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
import { Device } from '@nordicsemiconductor/pc-nrfconnect-shared';

import BoardControllerConfigDefinition from '../../common/boards/BoardControllerConfigDefinition';
import nrf54h20json from '../../common/boards/nrf_PCA10145_54H20.json';
import nrf54h20pdk080json from '../../common/boards/nrf_PCA10145_0.8.0_54H20.json';
import nrf9161v091json from '../../common/boards/nrf_PCA10153_0.9.1_9161.json';
import nrf9161v0100json from '../../common/boards/nrf_PCA10153_0.10.0_9161.json';
import nrf9161v100json from '../../common/boards/nrf_PCA10153_1.0.0_9161.json';
import nrf54l15v020json from '../../common/boards/nrf_PCA10156_0.2.0.json';
import nrf54l15v030json from '../../common/boards/nrf_PCA10156_0.3.0.json';
import nrf9151v020json from '../../common/boards/nrf_PCA10171_0.2.0_9151.json';
import nrf54h20v070json from '../../common/boards/nrf_PCA10175_54H20_0.7.0.json';
import nrf54h20v070json from '../../common/boards/nrf_PCA10175_0.7.0_54H20.json';

export type BoardDefinition = {
boardControllerConfigDefinition?: BoardControllerConfigDefinition;
Expand All @@ -32,7 +32,7 @@ const typednrf54l15v020json =
nrf54l15v020json as BoardControllerConfigDefinition;
const typednrf54l15v030json =
nrf54l15v030json as BoardControllerConfigDefinition;
const typednrf54h20json = nrf54h20json as BoardControllerConfigDefinition;
const typednrf54h20json = nrf54h20pdk080json as BoardControllerConfigDefinition;
const typednrf54h20v070json =
nrf54h20v070json as BoardControllerConfigDefinition;
const typednrf9151v020json = nrf9151v020json as BoardControllerConfigDefinition;
Expand Down

0 comments on commit faf619c

Please sign in to comment.