Hallo, vielleicht habe ich da 2 Treppen genommen u. bin noch to green?
Habe nach der Anleitung von Waveshare installiert. Den Test (Run_the_Test_Demo) bekomme ich jedoch nicht zum Laufen. Was ist da falsch?
Einiges hatte ich zuvor installiert.
Update: nach dem Verzeichniswechsel bin ich in "C"
Auf dem Driver-hat sind 2 Switches die müssen doch zum Test bestimmt auf "Display" und "Interface" stehen-oder?
C
cd e-Paper/RaspberryPi_JetsonNano/
#include <stdlib.h> //exit()
#include <signal.h> //signal()
#include "EPD_Test.h" //Examples
void Handler(int signo)
{
//System Exit
printf("\r\nHandler:exit\r\n");
DEV_Module_Exit();
exit(0);
}
int main(void)
{
// Exception handling:ctrl + c
signal(SIGINT, Handler);
#ifdef epd1in64g
Display More
Code
pi@raspberrypi:~ $ ls /dev/spi*
/dev/spidev0.0 /dev/spidev0.1
pi@raspberrypi:~ $
pi@raspberrypi:~ $ wget http://www.airspayce.com/mikem/bcm2835/bcm2835-1.71.tar.gz
--2023-01-22 11:53:51-- http://www.airspayce.com/mikem/bcm2835/bcm2835-1.71.tar.gz
Auflösen des Hostnamens www.airspayce.com (www.airspayce.com)… 192.185.48.187
Verbindungsaufbau zu www.airspayce.com (www.airspayce.com)|192.185.48.187|:80 … verbunden.
HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK
Länge: 276152 (270K) [application/x-gzip]
Wird in »bcm2835-1.71.tar.gz.2« gespeichert.
bcm2835-1.71.tar.gz 100%[===================>] 269,68K 524KB/s in 0,5s
2023-01-22 11:53:52 (524 KB/s) - »bcm2835-1.71.tar.gz.2« gespeichert [276152/276152]
pi@raspberrypi:~ $ tar zxvf bcm2835-1.71.tar.gz
bcm2835-1.71/
bcm2835-1.71/configure.ac
bcm2835-1.71/COPYING
bcm2835-1.71/examples/
bcm2835-1.71/examples/spi/
bcm2835-1.71/examples/spi/spi.c
bcm2835-1.71/examples/input/
bcm2835-1.71/examples/input/input.c
bcm2835-1.71/examples/spiram/
bcm2835-1.71/examples/spiram/spiram.h
bcm2835-1.71/examples/spiram/spiram_test.c
bcm2835-1.71/examples/spiram/spiram.c
bcm2835-1.71/examples/event/
bcm2835-1.71/examples/event/event.c
bcm2835-1.71/examples/pwm/
bcm2835-1.71/examples/pwm/pwm.c
bcm2835-1.71/examples/gpio/
bcm2835-1.71/examples/gpio/gpio.c
bcm2835-1.71/examples/blink/
bcm2835-1.71/examples/blink/blink.c
bcm2835-1.71/examples/spin/
bcm2835-1.71/examples/spin/spin.c
bcm2835-1.71/examples/i2c/
bcm2835-1.71/examples/i2c/i2c.c
bcm2835-1.71/config.guess
bcm2835-1.71/NEWS
bcm2835-1.71/depcomp
bcm2835-1.71/configure
bcm2835-1.71/aclocal.m4
bcm2835-1.71/compile
bcm2835-1.71/INSTALL
bcm2835-1.71/Makefile.in
bcm2835-1.71/missing
bcm2835-1.71/config.sub
bcm2835-1.71/Makefile.am
bcm2835-1.71/ChangeLog
bcm2835-1.71/README
bcm2835-1.71/install-sh
bcm2835-1.71/config.h.in
bcm2835-1.71/src/
bcm2835-1.71/src/test.c
bcm2835-1.71/src/bcm2835.h
bcm2835-1.71/src/bcm2835.c
bcm2835-1.71/src/Makefile.in
bcm2835-1.71/src/Makefile.am
bcm2835-1.71/ltmain.sh
bcm2835-1.71/AUTHORS
bcm2835-1.71/doc/
bcm2835-1.71/doc/Doxyfile.in
bcm2835-1.71/doc/Makefile.in
bcm2835-1.71/doc/Makefile.am
bcm2835-1.71/test-driver
pi@raspberrypi:~ $ cd bcm2835-1.71/
pi@raspberrypi:~/bcm2835-1.71 $ sudo ./configure && sudo make && sudo make check && sudo make install
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether make supports the include directive... yes (GNU style)
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking dependency style of gcc... gcc3
checking for clock_gettime in -lrt... yes
checking for doxygen... no
configure: WARNING: Doxygen not found - continuing without Doxygen support
checking for ranlib... ranlib
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking whether gcc understands -c and -o together... (cached) yes
checking dependency style of gcc... (cached) gcc3
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating doc/Makefile
config.status: creating config.h
config.status: config.h is unchanged
config.status: executing depfiles commands
make all-recursive
make[1]: Verzeichnis „/home/pi/bcm2835-1.71“ wird betreten
Making all in src
make[2]: Verzeichnis „/home/pi/bcm2835-1.71/src“ wird betreten
make[2]: Für das Ziel „all“ ist nichts zu tun.
make[2]: Verzeichnis „/home/pi/bcm2835-1.71/src“ wird verlassen
Making all in doc
make[2]: Verzeichnis „/home/pi/bcm2835-1.71/doc“ wird betreten
make[2]: Für das Ziel „all“ ist nichts zu tun.
make[2]: Verzeichnis „/home/pi/bcm2835-1.71/doc“ wird verlassen
make[2]: Verzeichnis „/home/pi/bcm2835-1.71“ wird betreten
make[2]: Verzeichnis „/home/pi/bcm2835-1.71“ wird verlassen
make[1]: Verzeichnis „/home/pi/bcm2835-1.71“ wird verlassen
Making check in src
make[1]: Verzeichnis „/home/pi/bcm2835-1.71/src“ wird betreten
make test
make[2]: Verzeichnis „/home/pi/bcm2835-1.71/src“ wird betreten
gcc -DHAVE_CONFIG_H -I. -I.. -g -O2 -MT test.o -MD -MP -MF .deps/test.Tpo -c -o test.o test.c
mv -f .deps/test.Tpo .deps/test.Po
gcc -g -O2 -o test test.o ./libbcm2835.a -lrt
make[2]: Verzeichnis „/home/pi/bcm2835-1.71/src“ wird verlassen
make check-TESTS
make[2]: Verzeichnis „/home/pi/bcm2835-1.71/src“ wird betreten
make[3]: Verzeichnis „/home/pi/bcm2835-1.71/src“ wird betreten
PASS: test
============================================================================
Testsuite summary for bcm2835 1.71
============================================================================
# TOTAL: 1
# PASS: 1
# SKIP: 0
# XFAIL: 0
# FAIL: 0
# XPASS: 0
# ERROR: 0
============================================================================
make[3]: Verzeichnis „/home/pi/bcm2835-1.71/src“ wird verlassen
make[2]: Verzeichnis „/home/pi/bcm2835-1.71/src“ wird verlassen
make[1]: Verzeichnis „/home/pi/bcm2835-1.71/src“ wird verlassen
Making check in doc
make[1]: Verzeichnis „/home/pi/bcm2835-1.71/doc“ wird betreten
make[1]: Für das Ziel „check“ ist nichts zu tun.
make[1]: Verzeichnis „/home/pi/bcm2835-1.71/doc“ wird verlassen
make[1]: Verzeichnis „/home/pi/bcm2835-1.71“ wird betreten
make[1]: Verzeichnis „/home/pi/bcm2835-1.71“ wird verlassen
Making install in src
make[1]: Verzeichnis „/home/pi/bcm2835-1.71/src“ wird betreten
make[2]: Verzeichnis „/home/pi/bcm2835-1.71/src“ wird betreten
/bin/mkdir -p '/usr/local/lib'
/usr/bin/install -c -m 644 libbcm2835.a '/usr/local/lib'
( cd '/usr/local/lib' && ranlib libbcm2835.a )
/bin/mkdir -p '/usr/local/include'
/usr/bin/install -c -m 644 bcm2835.h '/usr/local/include'
make[2]: Verzeichnis „/home/pi/bcm2835-1.71/src“ wird verlassen
make[1]: Verzeichnis „/home/pi/bcm2835-1.71/src“ wird verlassen
Making install in doc
make[1]: Verzeichnis „/home/pi/bcm2835-1.71/doc“ wird betreten
make[2]: Verzeichnis „/home/pi/bcm2835-1.71/doc“ wird betreten
make[2]: Für das Ziel „install-exec-am“ ist nichts zu tun.
make[2]: Für das Ziel „install-data-am“ ist nichts zu tun.
make[2]: Verzeichnis „/home/pi/bcm2835-1.71/doc“ wird verlassen
make[1]: Verzeichnis „/home/pi/bcm2835-1.71/doc“ wird verlassen
make[1]: Verzeichnis „/home/pi/bcm2835-1.71“ wird betreten
make[2]: Verzeichnis „/home/pi/bcm2835-1.71“ wird betreten
make[2]: Für das Ziel „install-exec-am“ ist nichts zu tun.
make[2]: Für das Ziel „install-data-am“ ist nichts zu tun.
make[2]: Verzeichnis „/home/pi/bcm2835-1.71“ wird verlassen
make[1]: Verzeichnis „/home/pi/bcm2835-1.71“ wird verlassen
pi@raspberrypi:~/bcm2835-1.71 $
pi@raspberrypi:~ $ ls /dev/spi*
/dev/spidev0.0 /dev/spidev0.1
pi@raspberrypi:~ $
pi@raspberrypi:~ $ wget http://www.airspayce.com/mikem/bcm2835/bcm2835-1.71.tar.gz
--2023-01-22 11:53:51-- http://www.airspayce.com/mikem/bcm2835/bcm2835-1.71.tar.gz
Auflösen des Hostnamens www.airspayce.com (www.airspayce.com)… 192.185.48.187
Verbindungsaufbau zu www.airspayce.com (www.airspayce.com)|192.185.48.187|:80 … verbunden.
HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK
Länge: 276152 (270K) [application/x-gzip]
Wird in »bcm2835-1.71.tar.gz.2« gespeichert.
bcm2835-1.71.tar.gz 100%[===================>] 269,68K 524KB/s in 0,5s
2023-01-22 11:53:52 (524 KB/s) - »bcm2835-1.71.tar.gz.2« gespeichert [276152/276152]
pi@raspberrypi:~ $ tar zxvf bcm2835-1.71.tar.gz
bcm2835-1.71/
bcm2835-1.71/configure.ac
bcm2835-1.71/COPYING
bcm2835-1.71/examples/
bcm2835-1.71/examples/spi/
bcm2835-1.71/examples/spi/spi.c
bcm2835-1.71/examples/input/
bcm2835-1.71/examples/input/input.c
bcm2835-1.71/examples/spiram/
bcm2835-1.71/examples/spiram/spiram.h
bcm2835-1.71/examples/spiram/spiram_test.c
bcm2835-1.71/examples/spiram/spiram.c
bcm2835-1.71/examples/event/
bcm2835-1.71/examples/event/event.c
bcm2835-1.71/examples/pwm/
bcm2835-1.71/examples/pwm/pwm.c
bcm2835-1.71/examples/gpio/
bcm2835-1.71/examples/gpio/gpio.c
bcm2835-1.71/examples/blink/
bcm2835-1.71/examples/blink/blink.c
bcm2835-1.71/examples/spin/
bcm2835-1.71/examples/spin/spin.c
bcm2835-1.71/examples/i2c/
bcm2835-1.71/examples/i2c/i2c.c
bcm2835-1.71/config.guess
bcm2835-1.71/NEWS
bcm2835-1.71/depcomp
bcm2835-1.71/configure
bcm2835-1.71/aclocal.m4
bcm2835-1.71/compile
bcm2835-1.71/INSTALL
bcm2835-1.71/Makefile.in
bcm2835-1.71/missing
bcm2835-1.71/config.sub
bcm2835-1.71/Makefile.am
bcm2835-1.71/ChangeLog
bcm2835-1.71/README
bcm2835-1.71/install-sh
bcm2835-1.71/config.h.in
bcm2835-1.71/src/
bcm2835-1.71/src/test.c
bcm2835-1.71/src/bcm2835.h
bcm2835-1.71/src/bcm2835.c
bcm2835-1.71/src/Makefile.in
bcm2835-1.71/src/Makefile.am
bcm2835-1.71/ltmain.sh
bcm2835-1.71/AUTHORS
bcm2835-1.71/doc/
bcm2835-1.71/doc/Doxyfile.in
bcm2835-1.71/doc/Makefile.in
bcm2835-1.71/doc/Makefile.am
bcm2835-1.71/test-driver
pi@raspberrypi:~ $ cd bcm2835-1.71/
pi@raspberrypi:~/bcm2835-1.71 $ sudo ./configure && sudo make && sudo make check && sudo make install
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether make supports the include directive... yes (GNU style)
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking dependency style of gcc... gcc3
checking for clock_gettime in -lrt... yes
checking for doxygen... no
configure: WARNING: Doxygen not found - continuing without Doxygen support
checking for ranlib... ranlib
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking whether gcc understands -c and -o together... (cached) yes
checking dependency style of gcc... (cached) gcc3
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating doc/Makefile
config.status: creating config.h
config.status: config.h is unchanged
config.status: executing depfiles commands
make all-recursive
make[1]: Verzeichnis „/home/pi/bcm2835-1.71“ wird betreten
Making all in src
make[2]: Verzeichnis „/home/pi/bcm2835-1.71/src“ wird betreten
make[2]: Für das Ziel „all“ ist nichts zu tun.
make[2]: Verzeichnis „/home/pi/bcm2835-1.71/src“ wird verlassen
Making all in doc
make[2]: Verzeichnis „/home/pi/bcm2835-1.71/doc“ wird betreten
make[2]: Für das Ziel „all“ ist nichts zu tun.
make[2]: Verzeichnis „/home/pi/bcm2835-1.71/doc“ wird verlassen
make[2]: Verzeichnis „/home/pi/bcm2835-1.71“ wird betreten
make[2]: Verzeichnis „/home/pi/bcm2835-1.71“ wird verlassen
make[1]: Verzeichnis „/home/pi/bcm2835-1.71“ wird verlassen
Making check in src
make[1]: Verzeichnis „/home/pi/bcm2835-1.71/src“ wird betreten
make test
make[2]: Verzeichnis „/home/pi/bcm2835-1.71/src“ wird betreten
gcc -DHAVE_CONFIG_H -I. -I.. -g -O2 -MT test.o -MD -MP -MF .deps/test.Tpo -c -o test.o test.c
mv -f .deps/test.Tpo .deps/test.Po
gcc -g -O2 -o test test.o ./libbcm2835.a -lrt
make[2]: Verzeichnis „/home/pi/bcm2835-1.71/src“ wird verlassen
make check-TESTS
make[2]: Verzeichnis „/home/pi/bcm2835-1.71/src“ wird betreten
make[3]: Verzeichnis „/home/pi/bcm2835-1.71/src“ wird betreten
PASS: test
============================================================================
Testsuite summary for bcm2835 1.71
============================================================================
# TOTAL: 1
# PASS: 1
# SKIP: 0
# XFAIL: 0
# FAIL: 0
# XPASS: 0
# ERROR: 0
============================================================================
make[3]: Verzeichnis „/home/pi/bcm2835-1.71/src“ wird verlassen
make[2]: Verzeichnis „/home/pi/bcm2835-1.71/src“ wird verlassen
make[1]: Verzeichnis „/home/pi/bcm2835-1.71/src“ wird verlassen
Making check in doc
make[1]: Verzeichnis „/home/pi/bcm2835-1.71/doc“ wird betreten
make[1]: Für das Ziel „check“ ist nichts zu tun.
make[1]: Verzeichnis „/home/pi/bcm2835-1.71/doc“ wird verlassen
make[1]: Verzeichnis „/home/pi/bcm2835-1.71“ wird betreten
make[1]: Verzeichnis „/home/pi/bcm2835-1.71“ wird verlassen
Making install in src
make[1]: Verzeichnis „/home/pi/bcm2835-1.71/src“ wird betreten
make[2]: Verzeichnis „/home/pi/bcm2835-1.71/src“ wird betreten
/bin/mkdir -p '/usr/local/lib'
/usr/bin/install -c -m 644 libbcm2835.a '/usr/local/lib'
( cd '/usr/local/lib' && ranlib libbcm2835.a )
/bin/mkdir -p '/usr/local/include'
/usr/bin/install -c -m 644 bcm2835.h '/usr/local/include'
make[2]: Verzeichnis „/home/pi/bcm2835-1.71/src“ wird verlassen
make[1]: Verzeichnis „/home/pi/bcm2835-1.71/src“ wird verlassen
Making install in doc
make[1]: Verzeichnis „/home/pi/bcm2835-1.71/doc“ wird betreten
make[2]: Verzeichnis „/home/pi/bcm2835-1.71/doc“ wird betreten
make[2]: Für das Ziel „install-exec-am“ ist nichts zu tun.
make[2]: Für das Ziel „install-data-am“ ist nichts zu tun.
make[2]: Verzeichnis „/home/pi/bcm2835-1.71/doc“ wird verlassen
make[1]: Verzeichnis „/home/pi/bcm2835-1.71/doc“ wird verlassen
make[1]: Verzeichnis „/home/pi/bcm2835-1.71“ wird betreten
make[2]: Verzeichnis „/home/pi/bcm2835-1.71“ wird betreten
make[2]: Für das Ziel „install-exec-am“ ist nichts zu tun.
make[2]: Für das Ziel „install-data-am“ ist nichts zu tun.
make[2]: Verzeichnis „/home/pi/bcm2835-1.71“ wird verlassen
make[1]: Verzeichnis „/home/pi/bcm2835-1.71“ wird verlassen
pi@raspberrypi:~/bcm2835-1.71 $
pi@raspberrypi:~ $ sudo apt-get update
Holen:1 http://raspbian.raspberrypi.org/raspbian buster InRelease [15,0 kB]
OK:2 http://archive.raspberrypi.org/debian buster InRelease
Es wurden 15,0 kB in 1 s geholt (13,9 kB/s).
Paketlisten werden gelesen... Fertig
pi@raspberrypi:~ $ sudo apt-get install python-pip
Paketlisten werden gelesen... Fertig
Abhängigkeitsbaum wird aufgebaut.
Statusinformationen werden eingelesen.... Fertig
python-pip ist schon die neueste Version (18.1-5+rpt1).
0 aktualisiert, 0 neu installiert, 0 zu entfernen und 6 nicht aktualisiert.
pi@raspberrypi:~ $ sudo apt-get install python-pil
Paketlisten werden gelesen... Fertig
Abhängigkeitsbaum wird aufgebaut.
Statusinformationen werden eingelesen.... Fertig
python-pil ist schon die neueste Version (5.4.1-2+deb10u3).
0 aktualisiert, 0 neu installiert, 0 zu entfernen und 6 nicht aktualisiert.
pi@raspberrypi:~ $ sudo apt-get install python-numpy
Paketlisten werden gelesen... Fertig
Abhängigkeitsbaum wird aufgebaut.
Statusinformationen werden eingelesen.... Fertig
python-numpy ist schon die neueste Version (1:1.16.2-1).
0 aktualisiert, 0 neu installiert, 0 zu entfernen und 6 nicht aktualisiert.
pi@raspberrypi:~ $ sudo pip install RPi.GPIO
Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple
Requirement already satisfied: RPi.GPIO in /usr/lib/python2.7/dist-packages (0.7.0)
pi@raspberrypi:~ $ sudo pip install spidev
Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple
Requirement already satisfied: spidev in /usr/lib/python2.7/dist-packages (3.5)
pi@raspberrypi:~ $ sudo apt-get update
OK:1 http://raspbian.raspberrypi.org/raspbian buster InRelease
OK:2 http://archive.raspberrypi.org/debian buster InRelease
Paketlisten werden gelesen... Fertig
pi@raspberrypi:~ $ sudo apt-get install python3-pip
Paketlisten werden gelesen... Fertig
Abhängigkeitsbaum wird aufgebaut.
Statusinformationen werden eingelesen.... Fertig
python3-pip ist schon die neueste Version (18.1-5+rpt1).
0 aktualisiert, 0 neu installiert, 0 zu entfernen und 6 nicht aktualisiert.
pi@raspberrypi:~ $ sudo apt-get install python3-pil
Paketlisten werden gelesen... Fertig
Abhängigkeitsbaum wird aufgebaut.
Statusinformationen werden eingelesen.... Fertig
python3-pil ist schon die neueste Version (5.4.1-2+deb10u3).
0 aktualisiert, 0 neu installiert, 0 zu entfernen und 6 nicht aktualisiert.
pi@raspberrypi:~ $ sudo apt-get install python3-numpy
Paketlisten werden gelesen... Fertig
Abhängigkeitsbaum wird aufgebaut.
Statusinformationen werden eingelesen.... Fertig
python3-numpy ist schon die neueste Version (1:1.16.2-1).
0 aktualisiert, 0 neu installiert, 0 zu entfernen und 6 nicht aktualisiert.
pi@raspberrypi:~ $ sudo pip3 install RPi.GPIO
Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple
Requirement already satisfied: RPi.GPIO in /usr/lib/python3/dist-packages (0.7.0)
pi@raspberrypi:~ $ sudo pip3 install spidev
Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple
Requirement already satisfied: spidev in /usr/lib/python3/dist-packages (3.5)
pi@raspberrypi:~ $ sudo apt-get install p7zip-full
Paketlisten werden gelesen... Fertig
Abhängigkeitsbaum wird aufgebaut.
Statusinformationen werden eingelesen.... Fertig
p7zip-full ist schon die neueste Version (16.02+dfsg-6).
0 aktualisiert, 0 neu installiert, 0 zu entfernen und 6 nicht aktualisiert.
pi@raspberrypi:~ $ wget https://www.waveshare.net/w/upload/3/39/E-Paper_code.7z
--2023-01-22 12:07:19-- https://www.waveshare.net/w/upload/3/39/E-Paper_code.7z
Auflösen des Hostnamens www.waveshare.net (www.waveshare.net)… 120.77.147.21
Verbindungsaufbau zu www.waveshare.net (www.waveshare.net)|120.77.147.21|:443 … verbunden.
HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK
Länge: 10991611 (10M) [application/x-7z-compressed]
Wird in »E-Paper_code.7z« gespeichert.
E-Paper_code.7z 100%[===================>] 10,48M 1,13MB/s in 10s
2023-01-22 12:07:31 (1,03 MB/s) - »E-Paper_code.7z« gespeichert [10991611/10991611]
pi@raspberrypi:~ $ 7z x E-Paper_code.7z -O./e-Paper
7-Zip [32] 16.02 : Copyright (c) 1999-2016 Igor Pavlov : 2016-05-21
p7zip Version 16.02 (locale=de_DE.UTF-8,Utf16=on,HugeFiles=on,32 bits,4 CPUs LE)
Scanning the drive for archives:
1 file, 10991611 bytes (11 MiB)
Extracting archive: E-Paper_code.7z
--
Path = E-Paper_code.7z
Type = 7z
Physical Size = 10991611
Headers Size = 33218
Method = LZMA2:24
Solid = +
Blocks = 3
Would you like to replace the existing file:
Path: ./e-Paper/STM32/STM32-F103ZET6/Drivers/CMSIS/Lib/IAR/iar_cortexM3b_math.a
Size: 2846972 bytes (2781 KiB)
Modified: 2023-01-21 18:07:41
with the file from archive:
Path: STM32/STM32-F103ZET6/Drivers/CMSIS/Lib/IAR/iar_cortexM3b_math.a
Size: 2846972 bytes (2781 KiB)
Modified: 2020-10-30 07:32:27
? (Y)es / (N)o / (A)lways / (S)kip all / A(u)to rename all / (Q)uit? Y
Would you like to replace the existing file:
Path: ./e-Paper/STM32/STM32-F103ZET6/Drivers/CMSIS/Lib/IAR/iar_cortexM3l_math.a
Size: 2840164 bytes (2774 KiB)
Modified: 2023-01-21 18:07:41
with the file from archive:
Path: STM32/STM32-F103ZET6/Drivers/CMSIS/Lib/IAR/iar_cortexM3l_math.a
Size: 2840164 bytes (2774 KiB)
Modified: 2020-10-30 07:32:27
? (Y)es / (N)o / (A)lways / (S)kip all / A(u)to rename all / (Q)uit? Q
Archives with Errors: 1
Break signaled
pi@raspberrypi:~ $ cd e-Paper/RaspberryPi_JetsonNano/
pi@raspberrypi:~/e-Paper/RaspberryPi_JetsonNano $
pi@raspberrypi:~ $ sudo apt-get install wiringpi
Paketlisten werden gelesen... Fertig
Abhängigkeitsbaum wird aufgebaut.
Statusinformationen werden eingelesen.... Fertig
wiringpi ist schon die neueste Version (2.50).
0 aktualisiert, 0 neu installiert, 0 zu entfernen und 6 nicht aktualisiert.
pi@raspberrypi:~ $
Display More