move stable code to git
0 parent commit 03ca2f3ef05e02b9f248839a031b00d1544b3c16
@tundra tundra authored on 18 Jan 2019
Showing 15 changed files
View
49
CHANGELOG 0 → 100644
 
RCS file: RCS/leddrvr2.asm,v
Working file: leddrvr2.asm
head: 2.4
branch:
locks: strict
tundra: 2.4
access list:
symbolic names:
keyword substitution: kv
total revisions: 8; selected revisions: 8
description:
2nd Generation driver for homemade 7-segment LED display board.
----------------------------
revision 2.4 locked by: tundra;
date: 2002/05/02 19:25:21; author: tundra; state: Exp; lines: +17 -6
Reduced counting delay interval to 5ms.
Cleaned up the initialization code to properly zero the count
storage registers.
----------------------------
revision 2.3
date: 2002/04/02 16:29:32; author: tundra; state: Exp; lines: +15 -8
Extended code to fully support 8 LEDs.
----------------------------
revision 2.2
date: 2002/04/02 15:20:27; author: tundra; state: Exp; lines: +18 -27
First working version of CD4094-based shift register implementation.
----------------------------
revision 2.1
date: 2002/03/29 15:37:07; author: tundra; state: Exp; lines: +90 -45
First cut of dual CD4094 hardware driver.
----------------------------
revision 2.0
date: 2002/03/28 18:21:37; author: tundra; state: Exp; lines: +1 -10
New branch introduced for CD4094 Shift-Register based hardware.
----------------------------
revision 1.3
date: 2002/03/28 18:00:57; author: tundra; state: Exp; lines: +12 -2
Made changes to drive hybrid hardware using a 74164 serial shift register.
----------------------------
revision 1.2
date: 2002/03/28 12:04:28; author: tundra; state: Exp; lines: +28 -9
First implementation using shift-register for LED selection.
----------------------------
revision 1.1
date: 2002/03/27 10:03:27; author: tundra; state: Exp;
Initial revision
=============================================================================
View
60
Makefile 0 → 100644
# Makefile for PIC leddrvr2.asm test program
# $Id: Makefile,v 1.1 2002/04/02 16:30:33 tundra Exp tundra $
 
#BURN_PGM = c:/usr/local/PIC/pp/pp
#BURN_OPT = "-!"
#VRFY_OPT = "-!v"
 
 
BURN_PGM = c:/usr/local/PIC/fpp/fppdos.exe
GENERAL_OPT = -! -h3:1 -t20
DUMP_OPT = -d
VRFY_OPT = -v
ERASE_OPT = -e
INC_DIR = ../include
SRC_FILE = leddrvr2.asm
 
RELEASE_FILES = leddrvr2.asm leddrvr2-license.txt readme.txt
RELEASE_FILES1 = leddrvr2.hex leddrvr2.lst leddrvr2.xrf
RELEASE_DIR = Latest-Release
SCHEMATIC_DIR = Schematic
 
 
ASM_OPTIONS = /dINCFILES=${INC_DIR} /t8 /x /q
 
 
a all assemble:
@c:/progra~1/mplab/mpasm ${ASM_OPTIONS} ${SRC_FILE}
@ls -l *err
 
b burn:
@${BURN_PGM} ${GENERAL_OPT} leddrvr2.hex
@make verify
 
c clean:
@rm -f *.cod *.err *.hex *.lst *.obj *.xrf dump*.hex *~ *#* \#* *.erc
 
d dump:
@${BURN_PGM} ${GENERAL_OPT} ${DUMP_OPT} dump_leddrvr2.hex
 
e erase:
@${BURN_PGM} ${GENERAL_OPT} ${ERASE_OPT}
 
r release:
@- mkdir ${RELEASE_DIR}
@- co -l ${RELEASE_FILES}
@make assemble
@mv ${RELEASE_FILES} ${RELEASE_DIR}
@mv ${RELEASE_FILES1} ${RELEASE_DIR}
@cp Makefile ${RELEASE_DIR}
@cp ${SCHEMATIC_DIR}/* ${RELEASE_DIR}
@rlog ${SRC_FILE} >${RELEASE_DIR}/CHANGELOG
@make clean
 
rc relclean:
@- rm -rf ${RELEASE_DIR}
@make clean
v verify:
@${BURN_PGM} ${GENERAL_OPT} ${VRFY_OPT} leddrvr2.hex
View
leddrvr2-2.4.zip 0 → 100644
Not supported
View
leddrvr2-board.jpg 0 → 100644
View
leddrvr2-license.txt 0 → 100644
View
leddrvr2-sch.brd 0 → 100644
Not supported
View
leddrvr2-sch.gif 0 → 100644
View
leddrvr2-sch.png 0 → 100644
View
leddrvr2-sch.ps 0 → 100644
Too large (Show diff)
View
leddrvr2-sch.sch 0 → 100644
Not supported
View
leddrvr2.asm 0 → 100644
View
leddrvr2.hex 0 → 100644
View
leddrvr2.lst 0 → 100644
View
leddrvr2.xrf 0 → 100644
View
readme.txt 0 → 100644