jrhodes Posted November 10, 2019 Share Posted November 10, 2019 So basically, slow and easy with reset sequences is better? I'll admit i get in a hurry a lot. Quote Link to comment https://forums.atariage.com/topic/277635-tipi-usage-and-support/page/18/#findComment-4389087 Share on other sites More sharing options...
+arcadeshopper Posted November 11, 2019 Share Posted November 11, 2019 Reset the TI and it should make the pi active if it is in a loop from the TIPI.If that isn't the case maybe your pi overheated? Or power issues?Sent from my LM-G820 using Tapatalk 1 Quote Link to comment https://forums.atariage.com/topic/277635-tipi-usage-and-support/page/18/#findComment-4389205 Share on other sites More sharing options...
jrhodes Posted November 11, 2019 Share Posted November 11, 2019 I now have a temp monitoring script running so i can keep an eye on Pi's temp in degrees F: #! /bin/bash printf "%-15s%5s\n" "TIMESTAMP" "TEMP(F)" printf "%20s\n" "------------------" while true do tempC=$(sudo vcgencmd measure_temp | egrep -o '[0-9]*\.[0-9]*') tempF=$(echo "scale=2; 1.8 *$tempC + 32" | bc) timestamp=$(date +'%s') printf "%-15s%5s\n" "$timestamp" "$tempF" sleep 1 done To use this you will need to run: sudo apt-get install bc first to install bc. When run, you be asked to enter your tipi users password and it will display a timestamp and current temp in degrees F. This is saved as /usr/bin/tempmon so that it can be run simply by entering tempmon at the prompt. 1 Quote Link to comment https://forums.atariage.com/topic/277635-tipi-usage-and-support/page/18/#findComment-4389691 Share on other sites More sharing options...
+mizapf Posted November 11, 2019 Share Posted November 11, 2019 For the recent Raspi generation, heat sinks are recommended. https://www.amazon.com/dp/B07XJQ2X8Y/ 2 Quote Link to comment https://forums.atariage.com/topic/277635-tipi-usage-and-support/page/18/#findComment-4389713 Share on other sites More sharing options...
jrhodes Posted November 12, 2019 Share Posted November 12, 2019 I have one, and a fan 1 Quote Link to comment https://forums.atariage.com/topic/277635-tipi-usage-and-support/page/18/#findComment-4389770 Share on other sites More sharing options...
+jedimatt42 Posted November 13, 2019 Author Share Posted November 13, 2019 Someone just asked how to tell what CRUBASE your TIPI is at if you can't observe the board visually.. CALL TIPI (to run TIPICFG) will display the CRUBASE somewhere in the first two lines of the screen. -M@ 3 Quote Link to comment https://forums.atariage.com/topic/277635-tipi-usage-and-support/page/18/#findComment-4391115 Share on other sites More sharing options...
Omega-TI Posted November 14, 2019 Share Posted November 14, 2019 2 1 Quote Link to comment https://forums.atariage.com/topic/277635-tipi-usage-and-support/page/18/#findComment-4391213 Share on other sites More sharing options...
InfiniteTape Posted November 14, 2019 Share Posted November 14, 2019 On 11/11/2019 at 5:51 PM, mizapf said: For the recent Raspi generation, heat sinks are recommended. https://www.amazon.com/dp/B07XJQ2X8Y/ Be sure to update the bootloader on the Pi 4. There are fixes for power and heat management on both the SoC and the USB 3 controller. Get package rpi-eeprom, then run sudo rpi-eeprom-update. https://www.geeks3d.com/20191101/raspberry-pi-4-new-firmware-reduces-power-consumption-and-boards-temperatures/ 3 Quote Link to comment https://forums.atariage.com/topic/277635-tipi-usage-and-support/page/18/#findComment-4391227 Share on other sites More sharing options...
+jedimatt42 Posted November 14, 2019 Author Share Posted November 14, 2019 5 minutes ago, InfiniteTape said: Be sure to update the bootloader on the Pi 4. There are fixes for power and heat management on both the SoC and the USB 3 controller. Get package rpi-eeprom, then run sudo rpi-eeprom-update. https://www.geeks3d.com/20191101/raspberry-pi-4-new-firmware-reduces-power-consumption-and-boards-temperatures/ The latest raspian buster image I based the TIPI image on, will do this for you on boot. -M@ 2 Quote Link to comment https://forums.atariage.com/topic/277635-tipi-usage-and-support/page/18/#findComment-4391234 Share on other sites More sharing options...
+InsaneMultitasker Posted December 7, 2019 Share Posted December 7, 2019 Thanks to Greg, I was able to successfully set up my newly-received tipi-peb. The 'first' thing I wanted to test was the Horizon CFG tipi detection code (And of course, I loaded the program from the TIPI hehe) 2 Quote Link to comment https://forums.atariage.com/topic/277635-tipi-usage-and-support/page/18/#findComment-4405989 Share on other sites More sharing options...
+jedimatt42 Posted December 8, 2019 Author Share Posted December 8, 2019 2 hours ago, InsaneMultitasker said: Thanks to Greg, I was able to successfully set up my newly-received tipi-peb. The 'first' thing I wanted to test was the Horizon CFG tipi detection code (And of course, I loaded the program from the TIPI hehe) That looks like it has no idea, so it falls back on listing the first DSR device name. -M@ Quote Link to comment https://forums.atariage.com/topic/277635-tipi-usage-and-support/page/18/#findComment-4406076 Share on other sites More sharing options...
+InsaneMultitasker Posted December 8, 2019 Share Posted December 8, 2019 3 minutes ago, jedimatt42 said: That looks like it has no idea, so it falls back on listing the first DSR device name. -M@ Not 100% sure what you mean by 'falls back on listing the first DSR device name'. The CFG program looks for specific (and where possible, unique) device names/subprograms associated with various peripheral cards then based on what it finds, displays a simple description. Any device name displayed here is purely coincidental. I added TIPI detection to the program back in 2017 with the hope of a TIPI PEB card some day. That day finally arrived. 1 1 Quote Link to comment https://forums.atariage.com/topic/277635-tipi-usage-and-support/page/18/#findComment-4406083 Share on other sites More sharing options...
+jedimatt42 Posted December 8, 2019 Author Share Posted December 8, 2019 15 minutes ago, InsaneMultitasker said: Not 100% sure what you mean by 'falls back on listing the first DSR device name'. The CFG program looks for specific (and where possible, unique) device names/subprograms associated with various peripheral cards then based on what it finds, displays a simple description. Any device name displayed here is purely coincidental. I added TIPI detection to the program back in 2017 with the hope of a TIPI PEB card some day. That day finally arrived. Oh, I had no idea. Assumed you were just testing old software. -M@ 1 Quote Link to comment https://forums.atariage.com/topic/277635-tipi-usage-and-support/page/18/#findComment-4406093 Share on other sites More sharing options...
+jedimatt42 Posted December 20, 2019 Author Share Posted December 20, 2019 I don't normally approve of bumping a thread, but I'd like to keep TIPI support questions in this thread. So... bump. -M@ 1 Quote Link to comment https://forums.atariage.com/topic/277635-tipi-usage-and-support/page/18/#findComment-4414259 Share on other sites More sharing options...
pcoderdude14 Posted December 21, 2019 Share Posted December 21, 2019 Hey again...this is a little off-topic, but, I tried to run Stuart's webbrowser program and got this: 2019-12-15 22:36:20,030 TipiService : INFO TIPI Ready 2019-12-15 22:36:46,212 TipiDisk : INFO Opcode 5 LOAD - TIPI.NET.INTERNET 2019-12-15 22:36:46,213 Pab : INFO opcode: Load, fileType: Sequential, mode: Update, dataType: Display, recordType: Fixed, recordLength: 0, recordNumber: 8198 2019-12-15 22:36:46,218 ti_files.ProgramImageFile: ERROR Error reading file /home/tipi/tipi_disk/NET/INTERNET 2019-12-15 22:36:46,219 TipiDisk : ERROR responding with error: 7 Traceback (most recent call last): File "/home/tipi/tipi/services/TipiDisk.py", line 288, in handleLoad prog_file = ProgramImageFile.load(unix_name) File "/home/tipi/tipi/services/ti_files/ProgramImageFile.py", line 25, in load raise Exception("Invalid Program Image") Exception: Invalid Program Image 2019-12-15 22:36:46,223 TipiDisk : ERROR failed to load file - TIPI.NET.INTERNET Traceback (most recent call last): File "/home/tipi/tipi/services/TipiDisk.py", line 288, in handleLoad prog_file = ProgramImageFile.load(unix_name) File "/home/tipi/tipi/services/ti_files/ProgramImageFile.py", line 25, in load raise Exception("Invalid Program Image") Exception: Invalid Program Image 2019-12-15 22:36:46,225 TipiService : INFO Request completed. 2019-12-15 22:36:47,269 TipiService : INFO TIPI Ready Any idea what I'm doing wrong? Did I install it wrong? Jt Quote Link to comment https://forums.atariage.com/topic/277635-tipi-usage-and-support/page/18/#findComment-4414760 Share on other sites More sharing options...
+arcadeshopper Posted December 21, 2019 Share Posted December 21, 2019 Hey again...this is a little off-topic, but, I tried to run Stuart's webbrowser program and got this: 2019-12-15 22:36:20,030 TipiService : INFO TIPI Ready 2019-12-15 22:36:46,212 TipiDisk : INFO Opcode 5 LOAD - TIPI.NET.INTERNET 2019-12-15 22:36:46,213 Pab : INFO opcode: Load, fileType: Sequential, mode: Update, dataType: Display, recordType: Fixed, recordLength: 0, recordNumber: 8198 2019-12-15 22:36:46,218 ti_files.ProgramImageFile: ERROR Error reading file /home/tipi/tipi_disk/NET/INTERNET 2019-12-15 22:36:46,219 TipiDisk : ERROR responding with error: 7 Traceback (most recent call last): File "/home/tipi/tipi/services/TipiDisk.py", line 288, in handleLoad prog_file = ProgramImageFile.load(unix_name) File "/home/tipi/tipi/services/ti_files/ProgramImageFile.py", line 25, in load raise Exception("Invalid Program Image") Exception: Invalid Program Image 2019-12-15 22:36:46,223 TipiDisk : ERROR failed to load file - TIPI.NET.INTERNET Traceback (most recent call last): File "/home/tipi/tipi/services/TipiDisk.py", line 288, in handleLoad prog_file = ProgramImageFile.load(unix_name) File "/home/tipi/tipi/services/ti_files/ProgramImageFile.py", line 25, in load raise Exception("Invalid Program Image") Exception: Invalid Program Image 2019-12-15 22:36:46,225 TipiService : INFO Request completed. 2019-12-15 22:36:47,269 TipiService : INFO TIPI Ready Any idea what I'm doing wrong? Did I install it wrong? JtIn dm2k what is the file typeSent from my LG-V530 using Tapatalk Quote Link to comment https://forums.atariage.com/topic/277635-tipi-usage-and-support/page/18/#findComment-4414763 Share on other sites More sharing options...
pcoderdude14 Posted December 21, 2019 Share Posted December 21, 2019 I'm over in Troutdale...won't be back to my "TIPI Home" until 12-26. I will check when I get home Quote Link to comment https://forums.atariage.com/topic/277635-tipi-usage-and-support/page/18/#findComment-4414765 Share on other sites More sharing options...
+arcadeshopper Posted December 21, 2019 Share Posted December 21, 2019 I'm over in Troutdale...won't be back to my "TIPI Home" until 12-26. I will check when I get homeLikely you copied v9t9 files over and they need to be tifiles, you can convert them with the web interface Sent from my LG-V530 using Tapatalk 1 Quote Link to comment https://forums.atariage.com/topic/277635-tipi-usage-and-support/page/18/#findComment-4414769 Share on other sites More sharing options...
pcoderdude14 Posted December 21, 2019 Share Posted December 21, 2019 On 12/7/2019 at 7:51 PM, jedimatt42 said: That looks like it has no idea, so it falls back on listing the first DSR device name. -M@ So...it IS possible to have a Disk system AND the TIPI running at the same time! ? Cool.. I have a "side-car" disk-controller, and, would like to run it WITH TIPI HOOKED UP TOO. Is that possible? Jt Quote Link to comment https://forums.atariage.com/topic/277635-tipi-usage-and-support/page/18/#findComment-4414791 Share on other sites More sharing options...
+arcadeshopper Posted December 21, 2019 Share Posted December 21, 2019 So...it IS possible to have a Disk system AND the TIPI running at the same time! [emoji846] Cool.. I have a "side-car" disk-controller, and, would like to run it WITH TIPI HOOKED UP TOO. Is that possible? JtYesSent from my LM-G820 using Tapatalk 1 Quote Link to comment https://forums.atariage.com/topic/277635-tipi-usage-and-support/page/18/#findComment-4414793 Share on other sites More sharing options...
pcoderdude14 Posted December 21, 2019 Share Posted December 21, 2019 Just now, arcadeshopper said: Yes Sent from my LM-G820 using Tapatalk Yeah...something to look forward to, when I get back. Quote Link to comment https://forums.atariage.com/topic/277635-tipi-usage-and-support/page/18/#findComment-4414796 Share on other sites More sharing options...
+jedimatt42 Posted December 21, 2019 Author Share Posted December 21, 2019 The floppy controllers run at crubase >1100. So if your TIPI is set to this crubase, you will need to use the jumper block to change it. https://github.com/jedimatt42/tipi/wiki/crubase -M@ 1 Quote Link to comment https://forums.atariage.com/topic/277635-tipi-usage-and-support/page/18/#findComment-4415140 Share on other sites More sharing options...
+InsaneMultitasker Posted December 22, 2019 Share Posted December 22, 2019 I've poked around a bit on the TIPI wiki and this forum and haven't been able to find a way to stop TIPI from intercepting DSK4. Is there a configuration switch I need to set somewhere? Thanks Quote Link to comment https://forums.atariage.com/topic/277635-tipi-usage-and-support/page/18/#findComment-4415353 Share on other sites More sharing options...
+arcadeshopper Posted December 22, 2019 Share Posted December 22, 2019 I've poked around a bit on the TIPI wiki and this forum and haven't been able to find a way to stop TIPI from intercepting DSK4. Is there a configuration switch I need to set somewhere? ThanksNope it will always grab it so I'd move the cru up past disk systems if you want them to be firstSent from my LM-G820 using Tapatalk Quote Link to comment https://forums.atariage.com/topic/277635-tipi-usage-and-support/page/18/#findComment-4415358 Share on other sites More sharing options...
+jedimatt42 Posted December 22, 2019 Author Share Posted December 22, 2019 14 minutes ago, InsaneMultitasker said: I've poked around a bit on the TIPI wiki and this forum and haven't been able to find a way to stop TIPI from intercepting DSK4. Is there a configuration switch I need to set somewhere? Thanks I'd need to update the PI software to allow it to be unmapped. Quote Link to comment https://forums.atariage.com/topic/277635-tipi-usage-and-support/page/18/#findComment-4415359 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.