Note: you must be connected to a system via serial console
- Type following commands in boot console to perform a conversational boot:
B /R5:1 DKA300
SET/STARTUP OPA0:
SET WINDOW_SYSTEM 0
SET WRITESYSPARAMS 0
CONTINUE
| # This isn't meant to be a fully featured implementation. It's just a small playground project. | |
| # Use `cmake -Bbuild -S. -GNinja` to generate the project | |
| # Then use `cmake --build build --target package` to generate a .appimage file ready to go | |
| # This project DOES do dangerous things and tries to download the linuxdeploy tool directly. | |
| # When this makes it into IXM, it will be expected that users have the linuxdeploy tool installed to *some* location. | |
| # It will NOT download and execute something from the internet. | |
| cmake_minimum_required(VERSION 3.16) | |
| project(summon-test LANGUAGES CXX VERSION 0.1.0) | |
| add_executable(app) |
Used on TI Silent 745, but should work on all models with 15-pin EIA connector. As seen in my TI Silent 745 Video.
| DB-15 female | DB-9/DE-9 female | DB-15 EIA Signal Name | DB-9/DE-9 Signal Name |
|---|---|---|---|
| 11 | 1 | Data Carrier Detect (DCD) | Data Carrier Detect (DCD) |
| 13 | 2 | Transmit Data (TD) | Receive Data (RD) |
| 12 | 3 | Receive Data (RD) | Transmit Data (TD) |
| /* DX3741.C | |
| * | |
| * Copyright (c) 2022 Christian Gauger-Cosgrove | |
| * | |
| * Permission is hereby granted, free of charge, to any person obtaining a copy | |
| * of this software and associated documentation files (the "Software"), to deal | |
| * in the Software without restriction, including without limitation the rights | |
| * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| * copies of the Software, and to permit persons to whom the Software is | |
| * furnished to do so, subject to the following conditions: |