aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/snippets/nrf52833-nosd/nrf52833-nosd.overlay
blob: 8eb416938e6e12607af7e58e666d47ebcb8f60af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * Copyright (c) 2024 The ZMK Contributors
 *
 * SPDX-License-Identifier: MIT
 */

/delete-node/ &sd_partition;
/delete-node/ &code_partition;

&flash0 {
    partitions {
        sd_partition: partition@0 {
            reg = <0x0 DT_SIZE_K(4)>;
        };
        code_partition: partition@1000 {
            reg = <DT_SIZE_K(4) DT_SIZE_K(428)>;
        };
        /*
         * 32KB storage partition at 0x6c000 is unchanged
         */
    };
};