yoneda 5 лет назад
Родитель
Сommit
9c00e75fcb

+ 1 - 1
tree/boot/config.txt

@@ -59,7 +59,7 @@ dtparam=spi=on
 dtoverlay=hifiberry-dacplus,24db_digital_gain
 
 # Ir
-dtoverlay=lirc-rpi:gpio_in_pin=4,gpio_in_pull=down
+dtoverlay=gpio-ir,gpio_pin=4
 
 # Secondary SDCard
 dtoverlay=mmc_spi_cs1

+ 0 - 0
tree/extSD/mount_point


+ 0 - 0
tree/home/mpd/music/music_directory


+ 3 - 2
tree/usr/local/bin/mmc2.py

@@ -8,6 +8,7 @@ import signal
 MMC2DEV=['/dev/mmcblk1p1', '/dev/mmcblk2p1', '/dev/mmcblk3p1', '/dev/mmcblk4p1']
 MMC2DEBUG='/sys/kernel/debug/mmc'
 MODPROBE='/sbin/modprobe'
+MOUNTPOINT='/media/extSD'
 
 def mountMMC2():
 	mmc_number=0
@@ -21,7 +22,7 @@ def mountMMC2():
 	if dev is not None:
 		r=None
 		for i in range(10):
-			r=subprocess.run(['/bin/mount', dev, '/extSD','-o','user,ro,umask=000,iocharset=utf8,codepage=932,shortname=mixed'])
+			r=subprocess.run(['/bin/mount', dev, MOUNTPOINT,'-o','user,ro,umask=000,iocharset=utf8,codepage=932,shortname=mixed'])
 			if r.returncode != 0:
 				time.sleep(1)
 			else:
@@ -42,7 +43,7 @@ def mountMMC2():
 		return False
 
 def umountMMC2():
-	os.system('/bin/umount /extSD')
+	os.system('/bin/umount '+MOUNTPOINT)
 	return
 		
 def signal_handler(signal, handler):