File tree 1 file changed +16
-4
lines changed
1 file changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -20,14 +20,26 @@ On Ubuntu you can install the development tools easily.
20
20
sudo apt install gcc-arm-none-eabi libftdi1-dev build-essential pkg-config
21
21
```
22
22
23
- ## Framework Laptop EC for Intel 11th Gen Core Processors
23
+ ## Framework Laptop EC
24
24
25
- Building the project
26
- ```
25
+ The different Framework Laptops are each implemented as their own board:
26
+
27
+ | Laptop Generation | Board Name |
28
+ | --- | --- |
29
+ | Intel 11th Gen Core Processors | ` hx20 ` |
30
+ | Intel 12th Gen Core Processors | ` hx30 ` |
31
+
32
+ Building the project - run the command for the processor you have:
33
+
34
+ ``` sh
35
+ # hx20 (11th Gen)
27
36
make BOARD=hx20 CROSS_COMPILE=arm-none-eabi-
37
+
38
+ # hx30 (12th Gen)
39
+ make BOARD=hx30 CROSS_COMPILE=arm-none-eabi-
28
40
```
29
41
30
- The output artifact is ``` build/hx20/ec.bin `` ` which can be flashed to the EC SPI flash ROM.
42
+ The output artifact is ` build/hx20/ec.bin ` which can be flashed to the EC SPI flash ROM.
31
43
32
44
### EC Flash configuration
33
45
You can’t perform that action at this time.
0 commit comments