View | Details | Raw Unified | Return to bug 245678
Collapse All | Expand All

(-)devel/simavr/Makefile (-22 / +22 lines)
Lines 2-13 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	simavr
4
PORTNAME=	simavr
5
PORTVERSION=	1.3
5
PORTVERSION=	1.6
6
PORTREVISION=	1
7
DISTVERSIONPREFIX=	v
6
DISTVERSIONPREFIX=	v
8
CATEGORIES=	devel
7
CATEGORIES=	devel emulators
8
DIST_SUBDIR=	${PORTNAME}
9
9
10
PATCH_DIST_STRIP=	-p1
10
PATCH_DIST_STRIP=	-p1
11
PATCH_SITES=	https://github.com/buserror/simavr/commit/
12
PATCHFILES=	86264ad6d0b6b921130e293769d8ebaec512eecd.diff \
13
		e5ea627259daae64ddbe67402b6d121e0143cd21.diff \
14
		082939e64e1632d8ea0b1d6ebea93ca832c9e762.diff
11
15
12
MAINTAINER=	felix@palmen-it.de
16
MAINTAINER=	felix@palmen-it.de
13
COMMENT=	Simulator for several Atmel AVR chips
17
COMMENT=	Simulator for several Atmel AVR chips
Lines 18-47 Link Here
18
		bash:shells/bash \
22
		bash:shells/bash \
19
		${LOCALBASE}/avr/lib/libc.a:devel/avr-libc
23
		${LOCALBASE}/avr/lib/libc.a:devel/avr-libc
20
24
25
USES=		gl gmake pathfix pkgconfig xorg
26
USE_GL=	gl glu glut
27
PATHFIX_MAKEFILEIN=	Makefile
28
USE_XORG=	xdamage xcb xext xfixes xrandr
21
USE_GITHUB=	yes
29
USE_GITHUB=	yes
22
GH_ACCOUNT=	buserror
30
GH_ACCOUNT=	buserror
31
USE_LDCONFIG=	yes
23
32
24
USES=		gmake pathfix pkgconfig
33
ALL_TARGET=	build-parts
25
PATHFIX_MAKEFILEIN=	Makefile
26
ALL_TARGET=	build-simavr
27
MAKE_ARGS=	"RELEASE=1 PREFIX=${PREFIX} DESTDIR=${STAGEDIR}${PREFIX}"
34
MAKE_ARGS=	"RELEASE=1 PREFIX=${PREFIX} DESTDIR=${STAGEDIR}${PREFIX}"
28
35
29
USE_LDCONFIG=	yes
36
OPTIONS_DEFINE=		DOCS EXAMPLES
30
37
31
OPTIONS_DEFINE=		DOCS EXAMPLES THREADSAFE
32
THREADSAFE_DESC=	Add a patch to make debugging output thread-safe
33
34
DOCS_ALL_TARGET=	doc
38
DOCS_ALL_TARGET=	doc
35
DOCS_USE=		tex=latex:build tex=pdftex:build tex=texmf:build
39
DOCS_USE=		tex=latex:build tex=pdftex:build tex=texmf:build
36
40
37
EXAMPLES_ALL_TARGET=	build-examples
38
EXAMPLES_USES=		gl xorg
39
EXAMPLES_USE=		xorg=xdamage xorg=xcb xorg=xext xorg=xfixes \
40
			xorg=xrandr gl=glut
41
42
THREADSAFE_PATCH_SITES=	https://github.com/zirias/simavr/commit/
43
THREADSAFE_PATCHFILES=	4b7c8c5245e1bbb8cac04948564622f47178b5f0.diff
44
45
AVR_STRIP_CMD?=	avr-strip
41
AVR_STRIP_CMD?=	avr-strip
46
DUMPMACHINE=	${CC} -dumpmachine
42
DUMPMACHINE=	${CC} -dumpmachine
47
OBJDIRNAME=	obj-$$(${DUMPMACHINE})
43
OBJDIRNAME=	obj-$$(${DUMPMACHINE})
Lines 49-54 Link Here
49
post-install:
45
post-install:
50
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/simavr
46
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/simavr
51
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libsimavr.so.1
47
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libsimavr.so.1
48
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libsimavrparts.so.1
52
49
53
post-install-DOCS-on:
50
post-install-DOCS-on:
54
	${MKDIR} ${STAGEDIR}${DOCSDIR}
51
	${MKDIR} ${STAGEDIR}${DOCSDIR}
Lines 56-62 Link Here
56
	${INSTALL_DATA} ${WRKSRC}/doc/simavr_callgraph.pdf ${STAGEDIR}${DOCSDIR}
53
	${INSTALL_DATA} ${WRKSRC}/doc/simavr_callgraph.pdf ${STAGEDIR}${DOCSDIR}
57
54
58
post-install-EXAMPLES-on:
55
post-install-EXAMPLES-on:
59
.for BOARDELF in hd77480,charlcd i2ctest ledramp simduino ssd1306,ssd1306demo timer_64led
56
.for BOARDELF in ds1338,ds1338demo hd44780,charlcd i2ctest ledramp simduino ssd1306,ssd1306demo timer_64led
60
	BOARDELF=${BOARDELF}; \
57
	BOARDELF=${BOARDELF}; \
61
	BOARD=$${BOARDELF%%,*}; \
58
	BOARD=$${BOARDELF%%,*}; \
62
	ELF=$${BOARDELF##*,}; \
59
	ELF=$${BOARDELF##*,}; \
Lines 65-76 Link Here
65
		${WRKSRC}/examples/board_$${BOARD}/${OBJDIRNAME}/$${ELF}.elf \
62
		${WRKSRC}/examples/board_$${BOARD}/${OBJDIRNAME}/$${ELF}.elf \
66
		${STAGEDIR}${EXAMPLESDIR}/board_$${BOARD}/$${ELF}; \
63
		${STAGEDIR}${EXAMPLESDIR}/board_$${BOARD}/$${ELF}; \
67
	${INSTALL_DATA} ${WRKSRC}/examples/board_$${BOARD}/*.[aihc]* \
64
	${INSTALL_DATA} ${WRKSRC}/examples/board_$${BOARD}/*.[aihc]* \
68
			${WRKSRC}/examples/board_$${BOARD}/README \
69
			${WRKSRC}/examples/board_$${BOARD}/Makefile \
65
			${WRKSRC}/examples/board_$${BOARD}/Makefile \
70
			${STAGEDIR}${EXAMPLESDIR}/board_$${BOARD}/
66
			${STAGEDIR}${EXAMPLESDIR}/board_$${BOARD}/;\
67
	${TEST} -f ${WRKSRC}/examples/board_$${BOARD}/README && \
68
	${INSTALL_DATA} ${WRKSRC}/examples/board_$${BOARD}/README \
69
			${STAGEDIR}${EXAMPLESDIR}/board_$${BOARD}/ || ${TRUE}
71
.endfor
70
.endfor
72
.for AXF in \
71
.for AXF in \
73
		hd77480/atmega48_charlcd \
72
		ds1338/atmega32_ds1338 \
73
		hd44780/atmega48_charlcd \
74
		i2ctest/atmega1280_i2ctest \
74
		i2ctest/atmega1280_i2ctest \
75
		ledramp/atmega48_ledramp \
75
		ledramp/atmega48_ledramp \
76
		ssd1306/atmega32_ssd1306 \
76
		ssd1306/atmega32_ssd1306 \
(-)devel/simavr/distinfo (-4 / +9 lines)
Lines 1-4 Link Here
1
SHA256 (buserror-simavr-v1.3_GH0.tar.gz) = ddaaf9745b62b0c032a773365375a6f1b12c50ff4a89ae4d531e7b516846e357
1
TIMESTAMP = 1587070720
2
SIZE (buserror-simavr-v1.3_GH0.tar.gz) = 741336
2
SHA256 (simavr/buserror-simavr-v1.6_GH0.tar.gz) = a55ad04d055eef5656c49f78bc089968b059c6efb6a831618b8d7e67a840936d
3
SHA256 (4b7c8c5245e1bbb8cac04948564622f47178b5f0.diff) = 0bb3af41d9a64a372b64d2849bcfb9da00a685f54a31ee70fd7caf26d7db9c6c
3
SIZE (simavr/buserror-simavr-v1.6_GH0.tar.gz) = 3317397
4
SIZE (4b7c8c5245e1bbb8cac04948564622f47178b5f0.diff) = 1551
4
SHA256 (simavr/86264ad6d0b6b921130e293769d8ebaec512eecd.diff) = cc0b23d08f713bc450013f68df3e7cf2d329aa6eee6d66458e6101349aa10255
5
SIZE (simavr/86264ad6d0b6b921130e293769d8ebaec512eecd.diff) = 313
6
SHA256 (simavr/e5ea627259daae64ddbe67402b6d121e0143cd21.diff) = fef6af9400ad4abd5ad8f0272fb4d656815e289b42e8906476e6e0b0560ab25e
7
SIZE (simavr/e5ea627259daae64ddbe67402b6d121e0143cd21.diff) = 976
8
SHA256 (simavr/082939e64e1632d8ea0b1d6ebea93ca832c9e762.diff) = 70a0d68aa4768062d38e5b816d55506745ea2336b253ce4c275c263cc6ab4634
9
SIZE (simavr/082939e64e1632d8ea0b1d6ebea93ca832c9e762.diff) = 394
(-)devel/simavr/files/patch-Makefile (+12 lines)
Line 0 Link Here
1
--- Makefile.orig	2020-04-16 22:04:43 UTC
2
+++ Makefile
3
@@ -29,9 +29,6 @@ install:
4
 doc:
5
 	$(MAKE) -C doc RELEASE=$(RELEASE)
6
 
7
-install:
8
-	$(MAKE) -C simavr install
9
-
10
 clean:
11
 	$(MAKE) -C simavr clean
12
 	$(MAKE) -C tests clean
(-)devel/simavr/files/patch-examples_Makefile.opengl (-13 lines)
Lines 1-13 Link Here
1
--- examples/Makefile.opengl.orig	2016-01-19 09:41:55 UTC
2
+++ examples/Makefile.opengl
3
@@ -11,8 +11,8 @@ else
4
 ifeq (${shell uname -o}, Msys)
5
 LDFLAGS 	+= -mwindows -lopengl32 -lfreeglut
6
 else
7
-CPPFLAGS	+= ${shell pkg-config --cflags glu glut} -DFREEBSD=1
8
-LDFLAGS 	+= ${shell pkg-config --libs glu glut}
9
+CPPFLAGS	+= ${shell pkg-config --cflags glu} -DFREEBSD=1
10
+LDFLAGS 	+= ${shell pkg-config --libs glu} -lglut
11
 endif
12
 endif
13
 endif
(-)devel/simavr/files/patch-examples_parts_Makefile (+12 lines)
Line 0 Link Here
1
--- examples/parts/Makefile.orig	2020-04-16 21:45:08 UTC
2
+++ examples/parts/Makefile
3
@@ -44,9 +44,7 @@ ${target}: ${OBJ}/${target}.a
4
 #
5
 # Shared library (Linux only)
6
 #
7
-ifeq (${shell uname}, Linux)
8
 ${target}: ${OBJ}/${target}.so
9
-endif
10
 
11
 clean: clean-${OBJ}
12
 	rm -rf *.hex *.a *.axf *.vcd .*.swo .*.swp .*.swm .*.swn *.so *.o
(-)devel/simavr/files/patch-examples_parts_uart__pty.c (-18 lines)
Lines 1-18 Link Here
1
--- examples/parts/uart_pty.c.orig	2016-01-19 09:41:55 UTC
2
+++ examples/parts/uart_pty.c
3
@@ -30,8 +30,15 @@
4
 #ifdef __APPLE__
5
 #include <util.h>
6
 #else
7
+#ifdef FREEBSD
8
+#include <sys/types.h>
9
+#include <sys/ioctl.h>
10
+#include <termios.h>
11
+#include <libutil.h>
12
+#else
13
 #include <pty.h>
14
 #endif
15
+#endif
16
 
17
 #include "uart_pty.h"
18
 #include "avr_uart.h"
(-)devel/simavr/files/patch-simavr_Makefile (-13 / +20 lines)
Lines 1-26 Link Here
1
--- simavr/Makefile.orig	2016-10-03 12:42:39 UTC
1
--- simavr/Makefile.orig	2020-04-16 21:45:08 UTC
2
+++ simavr/Makefile
2
+++ simavr/Makefile
3
@@ -73,12 +73,9 @@ ${OBJ}/libsimavr.so		: ${OBJ}/libsimavr.
3
@@ -19,7 +19,7 @@
4
 	ln -sf libsimavr.so.1 $@
4
 SHELL 			:= ${shell which bash}
5
 SIMAVR_VERSION	:= ${shell \
6
 	git describe --abbrev=0 --tags || \
7
-	echo "unknown" }
8
+	echo "v1.6" }
9
 SIMAVR_REVISION	= 2
5
 
10
 
11
 target	= run_avr
12
@@ -54,9 +54,7 @@ ${OBJ}/libsimavr.a	:	${sim_o}
13
 
6
 libsimavr	: config ${OBJ}/libsimavr.a
14
 libsimavr	: config ${OBJ}/libsimavr.a
7
-# shared library won't work that easily on non-linux
15
 # shared library won't work that easily on non-linux
8
-ifeq (${shell uname}, Linux)
16
-ifeq (${shell uname}, Linux)
9
 libsimavr	:	${OBJ}/libsimavr.so
17
 libsimavr	: ${OBJ}/libsimavr.so
10
-endif
18
-endif
11
 
19
 
12
-${OBJ}/${target}.elf	: ${OBJ}/${target}.o
20
 ${OBJ}/${target}.elf	: libsimavr
13
+${OBJ}/${target}.elf	: ${OBJ}/${target}.o | libsimavr
21
 ${OBJ}/${target}.elf	: ${OBJ}/${target}.o
14
 
22
@@ -94,12 +92,10 @@ install : all
15
 ${target}	: ${OBJ}/${target}.elf
23
 		simavr.pc >$(DESTDIR)/libdata/pkgconfig/simavr.pc
16
 
17
@@ -108,10 +105,8 @@ install : all
18
 		simavr-avr.pc >$(DESTDIR)/libdata/pkgconfig/simavr-avr.pc
19
 	sed -e "s|PREFIX|${PREFIX}|g" -e "s|VERSION|${SIMAVR_VERSION}|g" \
24
 	sed -e "s|PREFIX|${PREFIX}|g" -e "s|VERSION|${SIMAVR_VERSION}|g" \
20
 		simavr.pc >$(DESTDIR)/libdata/pkgconfig/simavr.pc
25
 		simavrparts.pc >$(DESTDIR)/libdata/pkgconfig/simavrparts.pc
21
-ifeq (${shell uname}, Linux)
26
-ifeq (${shell uname}, Linux)
22
 	$(INSTALL) ${OBJ}/libsimavr.so.1 $(DESTDIR)/lib/
27
 	$(INSTALL) ${OBJ}/libsimavr.so.1 $(DESTDIR)/lib/
28
 	$(INSTALL) ../examples/parts/${OBJ}/libsimavrparts.so.1 $(DESTDIR)/lib/
23
 	ln -sf libsimavr.so.1 $(DESTDIR)/lib/libsimavr.so
29
 	ln -sf libsimavr.so.1 $(DESTDIR)/lib/libsimavr.so
30
 	ln -sf libsimavrparts.so.1 $(DESTDIR)/lib/libsimavrparts.so
24
-endif
31
-endif
25
 	$(MKDIR) $(DESTDIR)/bin
32
 	$(MKDIR) $(DESTDIR)/bin
26
 	$(INSTALL) ${OBJ}/${target}.elf $(DESTDIR)/bin/simavr
33
 	$(INSTALL) ${OBJ}/${target}.elf $(DESTDIR)/bin/simavr
(-)devel/simavr/pkg-plist (-10 / +41 lines)
Lines 1-5 Link Here
1
bin/simavr
1
bin/simavr
2
include/simavr/avr/avr_mcu_section.h
2
include/simavr/avr/avr_mcu_section.h
3
include/simavr/avr_acomp.h
3
include/simavr/avr_adc.h
4
include/simavr/avr_adc.h
4
include/simavr/avr_bitbang.h
5
include/simavr/avr_bitbang.h
5
include/simavr/avr_eeprom.h
6
include/simavr/avr_eeprom.h
Lines 14-21 Link Here
14
include/simavr/avr_usb.h
15
include/simavr/avr_usb.h
15
include/simavr/avr_watchdog.h
16
include/simavr/avr_watchdog.h
16
include/simavr/fifo_declare.h
17
include/simavr/fifo_declare.h
18
include/simavr/parts/ac_input.h
19
include/simavr/parts/button.h
20
include/simavr/parts/ds1338_virt.h
21
include/simavr/parts/hc595.h
22
include/simavr/parts/hd44780.h
23
include/simavr/parts/hd44780_glut.h
24
include/simavr/parts/i2c_eeprom.h
25
include/simavr/parts/lcd_font.h
26
include/simavr/parts/ssd1306_glut.h
27
include/simavr/parts/ssd1306_virt.h
28
include/simavr/parts/uart_pty.h
29
include/simavr/parts/uart_udp.h
30
include/simavr/parts/vhci_usb.h
17
include/simavr/sim_avr.h
31
include/simavr/sim_avr.h
18
include/simavr/sim_avr_types.h
32
include/simavr/sim_avr_types.h
33
include/simavr/sim_cmds.h
19
include/simavr/sim_core.h
34
include/simavr/sim_core.h
20
include/simavr/sim_core_config.h
35
include/simavr/sim_core_config.h
21
include/simavr/sim_core_decl.h
36
include/simavr/sim_core_decl.h
Lines 29-55 Link Here
29
include/simavr/sim_network.h
44
include/simavr/sim_network.h
30
include/simavr/sim_regbit.h
45
include/simavr/sim_regbit.h
31
include/simavr/sim_time.h
46
include/simavr/sim_time.h
47
include/simavr/sim_utils.h
32
include/simavr/sim_vcd_file.h
48
include/simavr/sim_vcd_file.h
33
lib/libsimavr.a
49
lib/libsimavr.a
34
lib/libsimavr.so
50
lib/libsimavr.so
35
lib/libsimavr.so.1
51
lib/libsimavr.so.1
52
lib/libsimavrparts.a
53
lib/libsimavrparts.so
54
lib/libsimavrparts.so.1
36
libdata/pkgconfig/simavr-avr.pc
55
libdata/pkgconfig/simavr-avr.pc
37
libdata/pkgconfig/simavr.pc
56
libdata/pkgconfig/simavr.pc
57
libdata/pkgconfig/simavrparts.pc
38
%%PORTDOCS%%%%DOCSDIR%%/manual.pdf
58
%%PORTDOCS%%%%DOCSDIR%%/manual.pdf
39
%%PORTDOCS%%%%DOCSDIR%%/simavr_callgraph.pdf
59
%%PORTDOCS%%%%DOCSDIR%%/simavr_callgraph.pdf
40
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Makefile
60
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Makefile
41
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Makefile.common
61
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Makefile.common
42
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Makefile.opengl
62
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Makefile.opengl
43
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_hd77480/Makefile
63
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_ds1338/Makefile
44
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_hd77480/README
64
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_ds1338/atmega32_ds1338.axf
45
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_hd77480/atmega48_charlcd.axf
65
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_ds1338/atmega32_ds1338.c
46
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_hd77480/atmega48_charlcd.c
66
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_ds1338/ds1338.c
47
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_hd77480/avr_hd44780.c
67
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_ds1338/ds1338.h
48
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_hd77480/avr_hd44780.h
68
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_ds1338/ds1338demo
49
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_hd77480/avr_hd44780_conf.h
69
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_ds1338/ds1338demo.c
50
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_hd77480/charlcd
70
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_ds1338/i2cmaster.h
51
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_hd77480/charlcd.c
71
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_ds1338/twimaster.c
52
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_hd77480/font.h
72
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_hd44780/Makefile
73
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_hd44780/README
74
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_hd44780/atmega48_charlcd.axf
75
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_hd44780/atmega48_charlcd.c
76
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_hd44780/avr_hd44780.c
77
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_hd44780/avr_hd44780.h
78
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_hd44780/avr_hd44780_conf.h
79
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_hd44780/charlcd
80
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_hd44780/charlcd.c
53
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_i2ctest/Makefile
81
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_i2ctest/Makefile
54
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_i2ctest/README
82
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_i2ctest/README
55
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_i2ctest/atmega1280_i2ctest.axf
83
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/board_i2ctest/atmega1280_i2ctest.axf
Lines 90-95 Link Here
90
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parts/ac_input.h
118
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parts/ac_input.h
91
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parts/button.c
119
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parts/button.c
92
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parts/button.h
120
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parts/button.h
121
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parts/ds1338_virt.c
122
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parts/ds1338_virt.h
93
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parts/hc595.c
123
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parts/hc595.c
94
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parts/hc595.h
124
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parts/hc595.h
95
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parts/hd44780.c
125
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parts/hd44780.c
Lines 98-103 Link Here
98
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parts/hd44780_glut.h
128
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parts/hd44780_glut.h
99
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parts/i2c_eeprom.c
129
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parts/i2c_eeprom.c
100
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parts/i2c_eeprom.h
130
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parts/i2c_eeprom.h
131
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parts/lcd_font.h
101
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parts/ssd1306_glut.c
132
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parts/ssd1306_glut.c
102
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parts/ssd1306_glut.h
133
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parts/ssd1306_glut.h
103
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parts/ssd1306_virt.c
134
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parts/ssd1306_virt.c

Return to bug 245678