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.
 
 
 
 
 
 

22 lines
925 B

  1. # NXP LPC2103 ARM7TDMI-S with 32kB flash and 8kB 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_lpc2103 {core_freq_khz adapter_freq_khz} {
  7. # 32kB flash and 8kB SRAM
  8. # setup_lpc2xxx <chip_name> <cputapid> <flash_size> <flash_variant> <workarea_size> <core_freq_khz> <adapter_freq_khz>
  9. setup_lpc2xxx lpc2103 0x4f1f0f0f 0x8000 lpc2000_v2 0x2000 $core_freq_khz $adapter_freq_khz
  10. }
  11. proc init_targets {} {
  12. # default to core clocked with 12MHz crystal
  13. echo "Warning - assuming default core clock 12MHz! Flashing may fail if actual core clock is different."
  14. # setup_lpc2103 <core_freq_khz> <adapter_freq_khz>
  15. setup_lpc2103 12000 1500
  16. }