Skip to content

Commit 232daff

Browse files
committed
removes parallel build form macos port.
1 parent a7da845 commit 232daff

File tree

2 files changed

+88
-0
lines changed

2 files changed

+88
-0
lines changed

builder/macOS.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@
1515
from . import unix
1616
from . import spawn
1717

18+
unix.unix_cmd = [
19+
'make',
20+
'',
21+
'',
22+
'-C',
23+
]
1824

1925
unix.REAL_PORT = 'macOS'
2026

@@ -27,6 +33,8 @@ def parse_args(extra_args, lv_cflags, board):
2733

2834

2935
def build_commands(not_sure, extra_args, script_dir, lv_cflags, board):
36+
37+
3038
return _build_commands(not_sure, extra_args, script_dir, lv_cflags, board)
3139

3240

display_configs/Elcrow-DLC35010R.toml

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
[MCU.esp32]
2+
BOARD = "ESP32_GENERIC_S3"
3+
BOARD_VARIANT = "SPIRAM_OCT"
4+
flash_size = 16
5+
octal_flash = true
6+
enable_jtag_repl = 'n'
7+
enable_cdc_repl = 'n'
8+
enable_uart_repl = 'y'
9+
uart_repl_bitrate = 115200
10+
11+
12+
[I80Bus.display_bus]
13+
data0 = 47
14+
data1 = 21
15+
data2 = 14
16+
data3 = 13
17+
data4 = 12
18+
data5 = 11
19+
data6 = 10
20+
data7 = 9
21+
data8 = 3
22+
data9 = 8
23+
data10 = 16
24+
data11 = 15
25+
data12 = 7
26+
data13 = 6
27+
data14 = 5
28+
data15 = 4
29+
dc = 45
30+
wr = 18
31+
freq = 40000000
32+
33+
34+
[I2C.Bus.i2c_bus]
35+
host = 0
36+
scl = 39
37+
sda = 38
38+
freq = 100000
39+
40+
41+
[I2C.Device.indev_device]
42+
bus = "i2c_bus"
43+
dev_id = "ft6x36.I2C_ADDR"
44+
reg_bits = "ft6x36.BITS"
45+
46+
47+
[ILI9488.display]
48+
data_bus = "display_bus"
49+
display_width = 320
50+
display_height = 480
51+
backlight_pin = 46
52+
color_space = "lv.COLOR_FORMAT.RGB565"
53+
54+
55+
[display.set_power]
56+
params = [true]
57+
58+
59+
[display.init]
60+
params = []
61+
62+
[FT6x36.indev]
63+
device = "indev_device"
64+
65+
[indev.firmware_config.fw_config]
66+
67+
[fw_config.width]
68+
value=800
69+
70+
[fw_config.height]
71+
value=480
72+
73+
[fw_config.save]
74+
params=[]
75+
76+
[display.set_backlight]
77+
params = [100]
78+
79+
[task_handler.TaskHandler]
80+
params=[]

0 commit comments

Comments
 (0)