PIC24 Support Libraries
SConscript.py
Go to the documentation of this file.
1 # This file contains all that a SConstruct file normally contains.
2 # In order to use Doxygen, however, all Python files must end with
3 # a .py extension. So, SConstuct simply executes this file.
4 
5 # Documentation for this file. If the \file tag isn't present,
6 # this file won't be documented.
7 ## \file
8 # This file supports ESOS builds.
9 
10 ## Common sources used for the PIC24 support library
11 ESOSSupportLibSources = [
12  'src/esos.c',
13  '../common/pic24_clockfreq.c',
14  '../common/pic24_configbits.c',
15  'src/pic24/esos_pic24_tick.c',
16  'src/pic24/esos_pic24_rs232.c',
17  'src/esos_comm.c',
18  'src/pic24/esos_pic24_irq.c']
19 
20 env = env.Clone(CPPDEFINES=['BUILT_ON_ESOS' '_NOASSERT'])