Subversion Repositories idreammicro-avr

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
57 jlesech 1
# Import environment set for target.
2
Import('env_target')
3
 
4
# Set target name.
5
TARGET = 'deuligne__demo'
6
 
7
# Set libraries to use.
8
libraries = [
9
    'deuligne',
10
 
11
    'mcp23008',
12
 
13
    'adc',
14
    'twi'
15
]
16
 
17
# Set source file.
18
sources = [
19
    'deuligne__demo.c'
20
]
21
 
22
# Build project and libraries.
23
env_target.BuildProject(sources, TARGET)
24
 
25
# Compute memory usage.
26
env_target.ComputeMemoryUsage(TARGET)