Code:
Datei: prog.settings
;how to use this file to add support for other programmers
;first create a section like [newprog]
; then enter the entries:
; BASE= $hexaddress
; MOSI= address in form of BASE[+offset] , bit [,inverted]
; CLOCK= same as MOSI
; RESET=same as MOSI
; MISO=same as MOSI
; The bit is a numer that must be written to set the bit
; for example 128 to set bit 7
; Optional is ,INVERTED to specify that inverse logic is used
; When 128 is specified for the bit, NOT 128 will be written(127)
[Techniks.com]
;tested and ok
BASE=$378
MOSI=BASE,1,
CLOCK=BASE,2,INVERTED
RESET=BASE,4,INVERTED
MISO=BASE+1,64
[AVRXS]
;tested and ok
;www.elm-chan.org/works/avrx
BASE=$378
MOSI=BASE,2
CLOCK=BASE,1
RESET=BASE,4
MISO=BASE+1,128,INVERTED
[WinAVR and SP12]
;tested and ok
BASE=$378 ;Typical $278,$378 or $3BC
MOSI=BASE,128 ;Data bit 7
CLOCK=BASE,1 ;Data bit 0
RESET=BASE,2 ;Data bit 1
MISO=BASE+1,128,INVERTED ;Busy line Status bit 7
[FUTURELEC]
;tested and ok
BASE=$378
MOSI=BASE+2,1,inverted
CLOCK=BASE,1
RESET=BASE,2
MISO=BASE+1,64
[sample]
;tested and ok
BASE=$378
MOSI=BASE,1
CLOCK=BASE,8
RESET=BASE,4
MISO=BASE+1,128,INVERTED
[stk200]
;tested and ok
BASE=$378
MOSI=BASE,32
CLOCK=BASE,16
RESET=BASE,192 ;128
MISO=BASE+1,64
[Tato Equipamentos]
;tested and ok
BASE=$378
MOSI=BASE,1
CLOCK=BASE,8
RESET=BASE,4
MISO=BASE+1,128,INVERTED
[HotChip]
;tested and ok
BASE=$378
MOSI=BASE,1
CLOCK=BASE,2
RESET=BASE,4
MISO=BASE+1,64
Vieleicht findest du in der Hilfe von
Lesezeichen