Subversion Repositories idreammicro-avr

Rev

Rev 20 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

# Import environment set for target.
Import('env_target')

# Set target name.
TARGET = 'ultimate'

# Set libraries to use.
libraries = [
    'ds1307',
    
    'digital_io',
    'twi',
    'usart'
]

# Set source file.
sources = 'ultimate.c'

# Build project and libraries.
env_target.BuildProject(libraries, sources, TARGET)

# Compute memory usage.
env_target.ComputeMemoryUsage(TARGET)