This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* 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: |
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 is the EIA port on the rear of the TI terminal.
- DB-9/DE-9 is the 9-pin serial port on the back of your computer, or on your USB-to-Serial adapter
| 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) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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) |