Skip to content
This repository has been archived by the owner on Sep 1, 2022. It is now read-only.

Commit

Permalink
Oscars wor
Browse files Browse the repository at this point in the history
Merge branch 'master' of https://github.com/OscarKro/hwlib into OscarKro-master
  • Loading branch information
wovo committed Jan 5, 2021
2 parents e45d3ba + 07fd14c commit f43f258
Show file tree
Hide file tree
Showing 20 changed files with 4,602 additions and 11 deletions.
2 changes: 1 addition & 1 deletion attic/arduino-nano/makefile.link
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# common settings for Arduino Uno projects
TARGET ?= arduino_uno
SERIAL_PORT ?= COM4
uart_port ?= COM4
CONSOLE_BAUDRATE ?= 2400

ifneq ($(OS),Windows_NT)
Expand Down
2 changes: 1 addition & 1 deletion attic/demo/arduino-due/makefile.link
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# common settings for Arduino Due projects
TARGET ?= arduino_due
SERIAL_PORT ?= COM3
uart_port ?= COM3
CONSOLE_BAUDRATE ?= 2400

# defer to the next-level makefile.link
Expand Down
2 changes: 1 addition & 1 deletion attic/demo/arduino-uno/makefile.link
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# common settings for Arduino Uno projects
TARGET ?= arduino_uno
SERIAL_PORT ?= COM4
uart_port ?= COM4
CONSOLE_BAUDRATE ?= 2400

ifneq ($(OS),Windows_NT)
Expand Down
2 changes: 1 addition & 1 deletion attic/demo/blue-pill/makefile.link
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# common settings for Blue-Pill projects
TARGET ?= blue_pill
SERIAL_PORT ?= COM4
uart_port ?= COM4
CONSOLE_BAUDRATE ?= 2400

ifneq ($(OS),Windows_NT)
Expand Down
2 changes: 1 addition & 1 deletion attic/demo/db103/makefile.link
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# settings for DB103 (LPC1114) projects
TARGET := db103
SERIAL_PORT ?= COM4
uart_port ?= COM4
CONSOLE_BAUDRATE := 115200

# defer to the next-level makefile
Expand Down
2 changes: 1 addition & 1 deletion attic/demo/my-first-dev-board/makefile.link
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# common settings for Arduino Uno projects
TARGET ?= my_first_dev_board
SERIAL_PORT ?= COM4
uart_port ?= COM4
CONSOLE_BAUDRATE ?= 2400

# defer to the next-level makefile
Expand Down
2 changes: 1 addition & 1 deletion doxyfiles/sources/arduino-uno/makefile.link
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# common settings for Arduino Uno projects
TARGET ?= arduino_uno
SERIAL_PORT ?= COM4
uart_port ?= COM4
CONSOLE_BAUDRATE ?= 2400

ifneq ($(OS),Windows_NT)
Expand Down
2 changes: 1 addition & 1 deletion doxyfiles/sources/db103/makefile.link
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

# settings for DB103 (LPC1114) projects
TARGET := db103
SERIAL_PORT ?= COM4
uart_port ?= COM4
CONSOLE_BAUDRATE := 2400

# defer to the next-level makefile
Expand Down
2 changes: 1 addition & 1 deletion doxyfiles/sources/makefile.link
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#
#############################################################################

SERIAL_PORT ?= COM6
uart_port ?= COM6

# defer to the next-level makefile.link
RELATIVE ?= .
Expand Down
23 changes: 23 additions & 0 deletions latex/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
LATEX_CMD=pdflatex

all: refman.pdf

pdf: refman.pdf

refman.pdf: clean refman.tex
$(LATEX_CMD) refman
makeindex refman.idx
$(LATEX_CMD) refman
latex_count=8 ; \
while egrep -s 'Rerun (LaTeX|to get cross-references right)' refman.log && [ $$latex_count -gt 0 ] ;\
do \
echo "Rerunning latex...." ;\
$(LATEX_CMD) refman ;\
latex_count=`expr $$latex_count - 1` ;\
done
makeindex refman.idx
$(LATEX_CMD) refman


clean:
rm -f *.ps *.dvi *.aux *.toc *.idx *.ind *.ilg *.log *.out *.brf *.blg *.bbl refman.pdf
Loading

0 comments on commit f43f258

Please sign in to comment.