Jump to content

unknownspeed

Member
  • Posts

    19
  • Joined

  • Last visited

Awards

This user doesn't have any awards

Recent Profile Visitors

720 profile views

unknownspeed's Achievements

  1. yes and no to much hassle to drain the loop on my gaming pc and so on and my sons pc does no have enough juice on the psu side to power it i will find a pc i can plug it in and test again, i surely hope not the core is dead loved this card
  2. Thanks for the reply bad power delivery meaning bad psu ? or ? psu is a corsair 750watt
  3. !!!HELP PLEASE!!! I was playing some csgo and after some games inn, i hear the fan spin upp on the gpu like it rise to max speed for like 3 sec and then pc shut down so i waited 15min or so and tried to start the pc up again and it turn on but look like it just stops booting at all, like it hangs in a black screen. (no video card detected) then i tried to install another video card in and hook it up to the monitor and the pc started up again but the sapphire card is not detected anymore in device manger but all the lights and fans are spinning normal :( so i took the card apart and had a look at the pcb but all looks normal nothing looks burnt,bulged,blown. started the card up again with no cooler on it to see if the chip got hot but it only got slightly warmer than turned off then i thought the psu not supplying to the 2x 8pin and i used a multi meter and found that all pins are okey any help would be much appreciated Picture of the pcb are here
  4. Your Welcome In my case i think the HDMI worked while the Config was Active and the HAT was on if you want to have better Resolution through HDMI, you have to go to the Boot Folder and change in the Config.txt file change this line form This hdmi_cvt 240 240 60 1 0 0 0 to something like hdmi_cvt 480 480 60 1 0 0 0 480 x 480 works great on LCD and HDMI i have not tested Higher so the result may vary??? Enjoy Thanks
  5. Hi All i Bought this 1.54" Hat for Raspberry Pi Zero W and i was disappointed in the performance with the included driver, or install the driver yourself from a fresh start. Slow FPS on the Display i think max was, 15fps on games, so i started to Compiling my own Driver and got some awesome result !!! Here is a Video on the Performance Different This will be a How to install the Driver and compile it with better Setting/Less bloat ware = Faster/Smoother Result. And how to install the GPIO Buttons Driver / Settings I use Windows personaly and two great applications for this task is Rufus for imaging https://rufus.ie/, and for SSH I use Putty https://www.putty.org/ For MAC & Linux users can you this applications UNETBOOTIN https://unetbootin.github.io/ 1.Install Retropie on the Pi Zero W. I use a program called Rufus to install the image with. Have a Keyboard inserted to the PI so you can go through All the settings Inn Raspi-Config you have to enable SSH and SPI Set your Wifi Password so we can Use Putty to go to Terminal and Remember the ip address Now Reboot the PI. Now login to the pi via Putty (username and password ""if not changed"" it is pi & raspberry) . Now let upgrade/update the pi . sudo apt-get update && sudo apt-get upgrade in a min or 2 press Y and ENTER (This Takes a long time, if it looks like it hangs/stops dont power down it takes a long time to install trust me) make a quick Reboot. . sudo reboot (you have to insert your username and password manually after the update and we will fix that. Username = pi Password = raspberry Go to Raspi-config, Boot option, Desktop / CLI and choose, B2 Console Autologin. and exit out and it will ask for a reboot and yes for a reboot. . 2. LCD Driver install Connect Putty again after reboot You can just copy and paste into the Putty Terminal . git clone https://github.com/juj/fbcp-ili9341.git . cd fbcp-ili9341 . mkdir driver . cd driver . cmake -DST7789VW=ON -DGPIO_TFT_DATA_CONTROL=22 -DGPIO_TFT_RESET_PIN=27 -DUSE_DMA_TRANSFERS=ON -DSPI_BUS_CLOCK_DIVISOR=20 -DDISPLAY_ROTATE_180_DEGREES=ON -DSTATISTICS=0 .. . make -j . Now the Driver has been installed. to test the Driver, type this . sudo ./fbcp-ili9341 . And the display should display a image. if a little fuzzy on the screen don't worry we have not set the Resolution yet to be 240x240 so let do that exit the command by pressing Ctrl and C . !!!SKIP THIS IF THE SCREEN IS WORKING!!! ### You can change BUS_CLOCK_DIVISOR=20 if it show fuzzy display or it is acting up, you can try to lower or increase the number. But for me 20 seems to work wonders. But you need to Delete the Driver folder. do this "rm -r driver" and then "mkdir driver" to try to make a new driver with a different settings ### If you are happy with the settings. Then lets change the resolution . sudo nano /boot/config.txt . Copy these settings into the config.txt under overscan_scale=1 dtoverlay=DST7789VW,speed=60000000,fps=60,debug=32,bgr=1 hdmi_force_hotplug=1 max_usb_current=1 hdmi_group=2 hdmi_mode=9 hdmi_mode=87 hdmi_cvt 240 240 60 1 0 0 0 hdmi_drive=2 Make sure it look like this. Then Ctrl and x, then press y and ENTER . Now lets make the driver start up every time we boot up the pi Copy this into the terminal cat <<EOT>> ~/1display #! /bin/sh ### BEGIN INIT INFO # Provides: 1display # Required-Start: \$local_fs # Required-Stop: \$local_fs # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Start 1display ### END INIT INFO PATH=/sbin:/bin:/usr/sbin:/usr/bin sudo /home/pi/fbcp-ili9341/driver/fbcp-ili9341 & exit 0 # vim:noet EOT sudo chown root:root ~/1display sudo chmod 755 ~/1display sudo mv ~/1display /etc/init.d/ sudo update-rc.d 1display defaults You need to change the resolution/aspect ratio in the retro-arch and config-editor on retropie to by 1x1 aspect ratio and the resolution to 240x240 Your all Done Now the LCD start after a reboot. 3. Getting the GPIO buttons to work You need to install a program called Notepad++ Pop the sd card in to a PC and download this. https://othermod.com/files/gpiobuttons.zip and unzip into the Boot directory ""Boot/otherMod"" Then navigate to otherMod folder and look for a file called retrogame.cfg and Right click on it and open it with Notepad++ Replace It With This. . UP 05 # Up DOWN 16 # Down LEFT 13 # Left RIGHT 06 # Right A 21 # Square Z 15 # X S 20 # Triangle X 12 # Circle Q 23 # Left Trigger W 14 # Right Trigger ENTER 26 # Start ESC 19 # Select F1 03 # Retroarch #VOLUMEDOWN 25 # Volume Down #VOLUMEUP 5 # Volume Up ( This is how i like the Button setup ) !!!!!!!!!!!!!!! WARNING DONT CHANGE THE MIDDLE ROW OF THIS SETUP, IT CAN LEAD TO INTERNAL SHORT'S ONLY CHANGE LEFT ROW aka ENTER, ESC and so on !!!!!!!!!!!!!!! Now pop back the sd card into the PI again and boot up login with putty and type this in . sudo bash /boot/setupcontrols.bash . Press y and ENTER now the PI will reboot and your GPIO Button is now Active but need to got to the Gamepad configuration and setup the GPIO gamepad and after that do a reboot then all Done. I did alot of reverse engineering on the LCD 1.54" hat to figure out all the GPIO pins layout, Drivers and even got the D-PAD Button to function. And Special Thanks to Pætur Hentze for all the help with the Troubleshooting. Enjoy!
  6. i got it working i found a sata sdcard storage thingy on aliexpress and it works great small and compact with 64 gb storage now is csgo running but game code error is still there but this is a fix atleast
  7. i tried sata disabling and soo on without luck but 1 Beer down and Boris idea (007 villan) came to me If I take apart an Hdd, non working, with disk problem and controller working I can minimize the size to small PCB and hope the pc can dectet the controller tricking the pc there is a hdd there then csgo can launch
  8. I will try to see if I can go to bios and maybe disable the sata port or something and see if that works
  9. yeah i have tried to google the problem with no luck I found a lot of related issue but non helpful there have to be a way to make a dummy sata connection or edit the window registry editor to trick the game to think there is a sata connection or something Thanks for the help
  10. this is what I found on Windows event log viewer Faulting module name: csgo.exe, version: 0.0.0.0, time stamp: 0x5a1dede1 Exception code: 0xc0000409 Fault offset: 0x00044232 Faulting process id: 0x3fc Faulting application start time: 0x01d3e7c900824c4a
  11. I have tried reinstall steam, the game, verify the game , and reinstall windows 2x times fresh install and soo on and the problem still exist I never had the ssd pluged in from start, soo I found this problem, got resolved by accident when I went to a lan party and forgot to boot from ssd instead of nvme and just tried to start csgo for lols and expected to not start and my surprise it work and then I tried to unplug the ssd and it stop work and vise versa windows log I have not tried yet I will try that and see if I can see anything thanks
  12. thanks for fast reply but there is no error message just loads and then nothing ? the cursor loading icon
  13. Hello to you all I have a problem with my csgo not working on my nvme drive I found what cause it, but don't know how to fix it all other games works fine on my nvme but csgo wont start up ???? but If I plug a sdd or hdd to one of my sata ports it will start up fine ???? "Found out by accident" if the sata port is occupied the game works but if I shutdown the pc and unplug the sata port the game wont start ?????????? BTW the Game is installed on the NVME soo my question is ? is there a fix for this problem ???? my pc case is too small to house a SSD or HDD soo I need a solution for this fix its a lan party pc that I can run around with ease specs of the pc AMD APU 7850k MSI A88XI AC V2 Corsair Vengance ram 8gb Samsung 960 EVO m.2 NVME 300Watt Pico Powersupply Windows 10 Home Thanks for any advise
  14. I have now installed the new pump a D5 from EK and the temps are the same and i fixed the small kink between the 2 gpus and here is a picture of the setup
×