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