Subversion Repositories idreammicro-avr

Rev

Rev 6 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 jlesech 1
# Import environment set for target.
6 jlesech 2
Import('env_target')
2 jlesech 3
 
4
# Set target name.
5
TARGET = 'digital_io__test'
6
 
7
# Set source file.
8
sources = [
9
    'digital_io__test.c'
10
]
11
 
7 jlesech 12
# Build project and libraries.
13
env_target.BuildProject(sources, TARGET)
2 jlesech 14
 
15
# Compute memory usage.
7 jlesech 16
env_target.ComputeMemoryUsage(TARGET)