Skip to content

Instantly share code, notes, and snippets.

@qwertos
Last active December 30, 2015 06:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save qwertos/b89001da1760ddf4089f to your computer and use it in GitHub Desktop.
Save qwertos/b89001da1760ddf4089f to your computer and use it in GitHub Desktop.
Connections for TNC-X to FT817
/*********************************************************************************/
/* The MIT License (MIT) */
/* */
/* Copyright (c) 2013, Aaron Herting */
/* */
/* 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: */
/* */
/* The above copyright notice and this permission notice shall be included in */
/* all copies or substantial portions of the Software. */
/* */
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR */
/* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, */
/* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE */
/* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER */
/* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, */
/* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN */
/* THE SOFTWARE. */
/*********************************************************************************/
graph cable{
rankdir=LR;
label=<
<table>
<tr><td>TNC cable for FT-817</td></tr>
<tr><td>Aaron Herting (KD2BEC)</td></tr>
</table>
>;
tnc[shape=none, label=<
<table>
<tr><td>TNC-X (5-pin DIN)</td></tr>
<tr><td port="1">1 - TX Audio</td></tr>
<tr><td port="2">2 - Ground</td></tr>
<tr><td port="3">3 - PTT</td></tr>
<tr><td port="4">4 - RX Audio</td></tr>
<tr><td port="5">5 - No Conn</td></tr>
</table>
>];
radio[shape=none, label=<
<table>
<tr><td>FT-817ND (6-pin MINI-DIN)</td></tr>
<tr><td port="1">1 - Data In</td></tr>
<tr><td port="2">2 - GND</td></tr>
<tr><td port="3">3 - PTT</td></tr>
<tr><td port="4">4 - Data Out 9600</td></tr>
<tr><td port="5">5 - Data Out 1200</td></tr>
<tr><td port="6">6 - SQL</td></tr>
</table>
>];
tnc:1 -- radio:1[color=black];
tnc:2 -- radio:2[color=brown];
tnc:3 -- radio:3[color=red];
tnc:4 -- radio:5[color=yellow];
tnc:5 -- radio:6[color=green];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment