From 3922597c1744e0d2635e0fd68cbff9eb47e44615 Mon Sep 17 00:00:00 2001 From: Echo Stretch <98502641+EchoStretch@users.noreply.github.com> Date: Thu, 6 Jun 2024 20:49:27 -0600 Subject: [PATCH] Added Ps4 Firmware --- source/main.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/main.c b/source/main.c index cd204ad..701a905 100644 --- a/source/main.c +++ b/source/main.c @@ -19,8 +19,11 @@ int _main(struct thread *td) { enable_perm_uart(); initSysUtil(); + char fw_version[6] = {0}; - printf_notification("Enabled UART!"); + get_firmware_string(fw_version); + + printf_notification("Enabled UART!\nPS4 Firmware %s", fw_version); #ifdef DEBUG_SOCKET printf_debug("Closing socket...\n");