source: rubycfg_asp/trunk/csp/sample1n/def.py@ 313

Last change on this file since 313 was 313, checked in by coas-nagasima, 7 years ago

ソースを追加

File size: 882 bytes
Line 
1# Source Dir
2SRCDIR = "../../asp_dcre/"
3
4# Configfile name
5CFG_FILE = "sample1n.cfg"
6
7# Target board
8TARGET = "gr_sakura_ccrx"
9
10# Target mcu
11TARGET_MCU = 'R5F563NBDxFP'
12
13# Application files
14asp_app_files = ['sample1.c', 'sample1n.c', 'route_cfg.c']
15
16# Addition Dir list (relative path from srcdir)
17USER_INCLUDE = ["../csp/sample1n/", "tinet", "tinet/netdev/if_rx62n"]
18
19# Copy sample1
20COPY_SAMPLE1 = False
21
22# Use RX Serial Debugger
23USE_SERIALDEBUG = True
24
25# Network service
26NO_USE_TINET_LIBRARY = True
27
28# Network interface
29NET_IF = "ether"
30
31# Network device
32NET_DEV = "if_rx62n"
33
34# Network layer
35SUPPORT_INET6 = True
36SUPPORT_INET4 = True
37
38# Transeport layer
39SUPPORT_TCP = True
40SUPPORT_UDP = True
41
42API_CFG_IP4MAPPED_ADDR = False
43
44CDEFS = []
45
46CLEAN_FILES = []
47
48# call tcpip file
49common.Source(proj_rel_dir + SRCDIR + "/tinet/tcpip.py")
Note: See TracBrowser for help on using the repository browser.