annotate python/target/target_list.py @ 332:87feb8a23b4d

Added task list command
author Windel Bouwman
date Fri, 07 Feb 2014 12:51:55 +0100
parents 44f336460c2a
children 4d204f6f7d4e
rev   line source
322
44f336460c2a Half of use of burg spec for arm
Windel Bouwman
parents:
diff changeset
1
44f336460c2a Half of use of burg spec for arm
Windel Bouwman
parents:
diff changeset
2 from .armtarget import ArmTarget
44f336460c2a Half of use of burg spec for arm
Windel Bouwman
parents:
diff changeset
3 from .msp430 import msp430target
44f336460c2a Half of use of burg spec for arm
Windel Bouwman
parents:
diff changeset
4
44f336460c2a Half of use of burg spec for arm
Windel Bouwman
parents:
diff changeset
5 # Instance:
44f336460c2a Half of use of burg spec for arm
Windel Bouwman
parents:
diff changeset
6 armtarget = ArmTarget()
44f336460c2a Half of use of burg spec for arm
Windel Bouwman
parents:
diff changeset
7
44f336460c2a Half of use of burg spec for arm
Windel Bouwman
parents:
diff changeset
8 target_list = [armtarget]