Subversion Repositories idreammicro-avr

Rev

Details | Last modification | View Log | RSS feed

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