You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
953 B

  1. # NXP LPC2294 ARM7TDMI-S with 256kB flash and 16kB SRAM, clocked with 12MHz crystal
  2. source [find target/lpc2xxx.cfg]
  3. # parameters:
  4. # - core_freq_khz - frequency of core in kHz during flashing, usually equal to connected crystal or internal oscillator, e.g. 12000
  5. # - adapter_freq_khz - frequency of debug adapter in kHz, should be 8x slower than core_freq_khz, e.g. 1000
  6. proc setup_lpc2294 {core_freq_khz adapter_freq_khz} {
  7. # 256kB flash and 16kB SRAM
  8. # setup_lpc2xxx <chip_name> <cputapid> <flash_size> <flash_variant> <workarea_size> <core_freq_khz> <adapter_freq_khz>
  9. # !! TAPID unknown !!
  10. setup_lpc2xxx lpc2294 0xffffffff 0x40000 lpc2000_v1 0x4000 $core_freq_khz $adapter_freq_khz
  11. }
  12. proc init_targets {} {
  13. # default to core clocked with 12MHz crystal
  14. echo "Warning - assuming default core clock 12MHz! Flashing may fail if actual core clock is different."
  15. # setup_lpc2294 <core_freq_khz> <adapter_freq_khz>
  16. setup_lpc2294 12000 1500
  17. }