Remove temp file and update gitignore.

m17 v2.1.4
Rob Riggs 2021-01-03 16:38:48 -06:00
rodzic b8e080538e
commit 2407942110
2 zmienionych plików z 3 dodań i 661 usunięć

3
.gitignore vendored
Wyświetl plik

@ -37,3 +37,6 @@ ARM_Release/
*.launch
.settings/
*.s
# Jupyter Notebook
.ipynb_checkpoints/

Wyświetl plik

@ -1,661 +0,0 @@
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Nucleo TNC\n",
"\n",
"The Nucleo TNC is a breadboard implementation of the Mobilinkd TNC3 using a STM32L432KC Nucleo32 board. This TNC faithfully implements the audio section and EEPROM storage of the TNC3. It omits the battery charging and Bluetooth components of the TNC3. It presents as a KISS TNC over a USB serial port.\n",
"\n",
"The Nucleo TNC can be assembled for about $25 in parts, assuming you already have a breadboard and hookup wire. The bill of materials and the equipment needed to build and use the TNC are provided below in the *Bill of Materials* and *Equipment* sections, respectively.\n",
"\n",
"This project is intended for amateur radio operators from beginners to advanced. If you want to just dive in to building it without understanding the theory of operations, start at the overview and skip to the BOM and Assembly Instructions. For those who wish to understand the theory of operation from an electrical perspective, we start with the *Schematic* and *Theory of Operation* sections after a brief overview.\n",
"\n",
"And for those who wish to understand the digital signal processing involved in this project, please refer to the [AFSK Demodulator](https://github.com/mobilinkd/afsk-demodulator/blob/master/afsk-demodulator.ipynb) tutorial which outlines the basics of how the demodulator is constructed. You can also refer to the source repository for the firmware.\n",
"\n",
"This breadboard TNC has the same radio interface pinout as the Mobilinkd TNCs and is designed to be used with the same cables as a Mobilinkd TNC. Pre-made cables for your radio can be purchased at http://store.mobilinkd.com or you can make your own.\n",
"\n",
"![Step 10](AssemblyStep10.png)\n",
"\n",
"## Table of Contents\n",
"\n",
" * [Schematic](#Schematic)\n",
" * [Theory of Operation](#Theory-of-Operation)\n",
" * [Radio Connection](#Radio-Connection)\n",
" * [PTT Circuitry](#PTT-Circuitry)\n",
" * [EEPROM](#EEPROM)\n",
" * [Indicator LEDs](#Indicator-LEDs)\n",
" * [Audio Input](#Audio-Input)\n",
" * [Audio Output](#Audio-Output)\n",
" * [Nucleo Board](#Nucleo-Board)\n",
" * [Bill of Materials](#Bill-of-Materials)\n",
" * [Equipment](#Equipment)\n",
" * [Assembly](#Assembly)\n",
" * [Nucleo and ICs](#Nucleo-and-ICs)\n",
" * [Bypass Capacitors](#Bypass-Capacitors)\n",
" * [Power and Ground](#Power-and-Ground)\n",
" * [LEDs](#LEDs)\n",
" * [3.5mm Jack](#3.5mm-Jack)\n",
" * [PTT](#PTT)\n",
" * [EEPROM Connections](#EEPROM-Connections)\n",
" * [Audio Input Circuitry](#Audio-Input-Circuitry)\n",
" * [Audio Output Circuitry](#Audio-Output-Circuitry)\n",
" * [Wiring](#Wiring)\n",
" * [Programming](#Programming)\n",
" * [Operation](#Operation)\n",
" * [Troubleshooting and Testing](#Troubleshooting-and-Testing)\n",
" \n",
"## Overview\n",
"\n",
"The Nucleo TNC is part of a larger system for sending and receiving digital information over the radio. This TNC is designed for 1200 baud AFSK, which means it is designed to send data over an audio channel -- specifically over a standard FM voice channel. One of the more popular uses for this is for APRS. It can also be used for Winlink, or to attach to packet radio BBS systems, and for direct one-on-one communication.\n",
"\n",
"To use this TNC you will need the following:\n",
"\n",
" * A radio -- typically a hand-held radio or mobile radio.\n",
" * The TNC itself.\n",
" * A computer with a USB port or a mobile device (Android, iOS) with a USB-OTG interface.\n",
" \n",
"```\n",
" RADIO <-> Nucleo TNC <-> COMPUTER\n",
"```\n",
"\n",
" * The radio is responsible for sending and receiving the modulated data signals over the air.\n",
" * The TNC is responsible for decoding the data received byt the radio into packets and sending them to the computer; and for receiving packets from the computer, modulating the signal, and causing the radio to transmit the data over the air.\n",
" * The computer is responsible dispaying the data in a human-friendly way.\n",
"\n",
"Because the radio is an integral part of this system, the quality of the radio plays a big part in the quality of the system as a whole. The TNC outlined here is a high-performane TNC that is rendered mediocre with a cheap radio.\n",
"\n",
"And because the computer is an integral part of the system, the software available on the computer and operating systems of choice dictate what packet radio options are available. For example, as of the time this was written, there is no Winlink software that will work with a KISS TNC on MacOS or Android.\n",
"\n",
"Also, because Apple restrict USB access via iOS, just as it does with Bluetooth SPP, you cannot access the TNC from an iOS device at this time. Apple users should complain loudly about this. It's an asinine policy.\n",
"\n",
"This document is divided into a number of sections. We start with the schematic diagram and theory of operation, then go into the bill of materials, the tools you will need, construction, troubleshooting, and operation.\n",
"\n",
"## References\n",
"\n",
" * [MBed NUCLEO-L432KC](https://os.mbed.com/platforms/ST-Nucleo-L432KC/)\n",
" * [MCP 6004 Datasheet](https://ww1.microchip.com/downloads/en/DeviceDoc/21733j.pdf)\n",
" * [MCP 24LC32A Datasheet](http://ww1.microchip.com/downloads/en/devicedoc/21713m.pdf)\n",
" * [2N7000 Datasheet](http://ww1.microchip.com/downloads/en/DeviceDoc/2N7000.pdf)\n",
"\n",
"## Glossary\n",
"\n",
"ADC - analog to digital converter. An electronic component that converts analog voltages to digital numbers.\n",
"APRS - Automatic Packet Reporting System. A packet radio system invented by Bob Bruninga, WB4APR.\n",
"BBS - Bulletin Board System. An online interactive computer system common before the advent of the Internet.\n",
"DAC - digital to analog converter. An electronic component that converts digital numbers to analog voltages.\n",
"EEPROM - electrically-erasable programmable read-only memory. An integrated circuit for semi-permanent data storage.\n",
"I2C - a two-wire digital communications bus used by integrated circuits for inter-chip communication. It contains a clock line (SCL) and a data line (SDA). https://en.wikipedia.org/wiki/I%C2%B2C\n",
"KISS - Acronym for *Keep it Simple, Stupid*. A type of TNC defined by a minimal control interface. This is in contrast to other modems that have a full human-readable command language.\n",
"LED - light emitting diode.\n",
"MCU - microcontroller unit. A microprocessor with embedded memory and peripherals.\n",
"PGA - programmable gain amplifier. An amplifier whose gain can be set programmatically.\n",
"PTT - Push-to-talk. The mechanism for enabling the transmitter on a radio.\n",
"TNC - terminal node controller. In our case it refers to a modulator/demodulator (a modem).\n",
"TRRS - Tip, ring, ring, sleeve. Short-hand for a 4-pole phone connector.\n",
"\n",
"\n",
"## Schematic\n",
"\n",
"This schematic is an SVG file so it should scale up infinitely.\n",
"\n",
"![Nucleo32 TNC Schematic](schematic.svg)\n",
"\n",
"The schematic consists of a number of block:\n",
"\n",
" * Audio Connector (audio in, audio out, PTT control)\n",
" * PTT circuitry for both simplex PTT and multiplex PTT.\n",
" * EEPROM storage for TNC configuration data.\n",
" * LEDs for TX/RX indication.\n",
" * Audio input processing.\n",
" * Audio output processing.\n",
" * The STM32 microcontroller board.\n",
" \n",
"## Theory of Operation\n",
"\n",
"In this section we will discuss all of the section at least briefly, but will focus most of the attention on the audio input and output sections and the PTT circuitry.\n",
"\n",
"The audio input and output circuitry share a single quad op-amp IC.\n",
"\n",
"The microcontroller (MCU) used in this project is an STM32L432KC on an ST Microelectronics Nucleo-32 board. This has a similar size an pin compatibility with the Arduino Nano. It contains a Cortex-M4F CPU capable of running at up to 80MHz, a 12-bit analog to digital converter (ADC) capable of over-sampling to achieve up to 16-bit resolution, and a dual-channel 12-bit digital to analog converter (DAC). It also includes a programmable gain amplifier (PGA) with up to 16X (24dB) amplification. The MCU has 64KB of static RAM and 256KB of flash program memory. It is an order of magnitude more capable then the Aduino Nano used in the previous breadboard TNC project.\n",
"\n",
"Both the EEPROM and the quad op amp have 100nF decoupling caps across VDD and GND.\n",
"\n",
"### Radio Connection\n",
"\n",
"The TNC radio interface consists of a 4-pole (TRRS) 3.5mm phone jack, similar to what is used in most mobile phones (for those that still have headphone jacks). The 4 poles are referred to as Tip (T), Ring 1 (R1), Ring 2 (R2) and Sleeve (S). Ring 1 is closest to the tip and ring 2 is closest to the base or sleeve.\n",
"\n",
"The connector pinout is:\n",
"\n",
" * Tip - TNC audio input / radio speaker.\n",
" * Ring 1 - PTT signal for simplex PTT. This is used by Kenwood radios and MiniDIN-6 packet interfaces.\n",
" * Ring 2 - TNC audio output / radio mic+ input, as well as multiplex PTT for Yaesu, Icom, Alinco (and other) radios.\n",
" * Sleeve - Common ground.\n",
"\n",
"We will discuss the PTT circuitry and options affecting Ring 1 and Ring 2 in the next section.\n",
"\n",
"### PTT Circuitry\n",
"\n",
"There are two types of PTT systems in common use on amateur radios: simplex and multiplex.\n",
"\n",
"Simplex is used on Kenwood HTs, as well as all HTs that use the Kenwood connector. This includes most of the cheap Chinese radios flooding the western markets. It is also the dominant (only?) PTT signaling system used on mobile and base station radios. It is the PTT signalling mechanism used on the standard MiniDIN-6 packet radio interface.\n",
"\n",
"Multiplex signalling is used on many hand-held radios and was the dominant signalling method on HTs for a while -- until the Chinese radios standardized on the Kenwood interface. Most Yaesu, Icom, Alinco and other brands still use this method.\n",
"\n",
"\n",
"#### Simplex PTT\n",
"\n",
"Simplex PTT is rather straight-forward. A dedicated PTT signal line is held high by a weak pull-up on the radio. When this signal is brought low by connecting it to ground, the transmitter is engaged. On the TNC, this signal line is connected to ground using a N-channel MOSFET. When the gate on the MOSFET goes high, the PTT signal is connected to ground through the MOSFET, engaging the transmitter. The MOSFET gate is pulled low (normally off) with a 100K pull-down resistor.\n",
"\n",
"There are three components to this circuit:\n",
"\n",
" * Q2 - this is a jelly-bean N-Channel MOSFET\n",
" * R13 - gate resistor\n",
" * R11 - pull-down resistor\n",
"\n",
"The signal from the MCU pin PA12 is active HIGH. This turns PTT on and off. The 2N7000 MOSFET connects PTT directly to ground when active. The 220 Ohm gate resistor R13 is there to prevent gate ringing on the MOSFET and the 100K pull-down resistor R11 is to ensure the PTT connection is OFF even when the MCU pin is not driven.\n",
"\n",
"\n",
"#### Mulitplex PTT\n",
"\n",
"Multiplex PTT relies on applying a DC bias to the radio's MIC+ signal by connecting it to ground through a 2.2K resistor. The bias is held high by the radio via a weak pull-up resistor internal to the radio. When the MIC+ line is connected to a 2.2K resistor to ground, this shifts the DC bias down and triggers PTT. Similar to the simplex PTT circuitry, the multiplex PTT circuit uses an N-channel MOSFET to switch this PTT signal on and off.\n",
"\n",
"There are four components to this circuit:\n",
"\n",
" * Q1 - this is a jelly-bean N-Channel MOSFET\n",
" * R4 - PTT bias resistor\n",
" * R6 - gate resistor\n",
" * R5 - pull-down resistor\n",
"\n",
"The signal from the MCU pin PA11 is active HIGH. This turns PTT on and off. The 2N7000 MOSFET connects MIC+ to ground through R4 when active to bias the MIC+ line. Just like the simples PTT circuit, the 220 Ohm gate resistor R6 is there to prevent gate ringing on the MOSFET and the 100K pull-down resistor R5 is to ensure the PTT connection is OFF even when the MCU pin is not driven.\n",
"\n",
"### EEPROM\n",
"\n",
"The TNC requires storage for configuration information (PTT style, KISS parameters, audio twist, etc). The STM32L4 series does not contain an internal EEPROM so we rely on an external EEPROM for this. The EEPROM uses a 400kHz I2C interface.\n",
"\n",
"The EEPROM circuitry consists of 4 components:\n",
"\n",
" * U2 - a 24LC32 32-kbit (4096 byte) EEPROM using an I2C interface\n",
" * C10 - a 100nF bypass capacitor\n",
" * R17 and R18 - two 2.2K pull-up resistors on the I2C lines, SDA and SCL\n",
"\n",
"The SCL and SDA lines of the EEPROM (U2) are connected to PA7 and PB4 on the MCU respectively. I2C requires external 2.2K pullups (R17 & R18) on these lines.\n",
"\n",
"The power pins on the EEPROMS are bypassed using a 100nF capacitor (C10).\n",
"\n",
"The EEPROM has 3 address pins and a write protect (WP) pins. We tie all of the address pins to GND to ensure the EEPROM uses the base address value. The WP pin is tied to GND to ensure that the EEPROM can be written. We do not need to write protect the EEPROM for this system.\n",
"\n",
"### Indicator LEDs\n",
"\n",
"There are two indicator LEDs. These are used to indicate transmit, when PTT is enabled, and receive, for data carrier detect (DCD).\n",
"\n",
"The DCD LED (D3) is connected to 3.3V via a 470 Ohm current limiting resistor (R19) to its anode, and then to pin PA9 on the MCU, which is configured in open drain mode. The LED_DCD MCU pin is active low.\n",
"\n",
"Likewise, the TX LED (D4) is connected to 3.3V via a 470 Ohm current limiting resistor (R20) to its anode, and then to pin PA8 on the MCU, which is configured in open drain mode. The LED_TX MCU pin is active low.\n",
"\n",
"### Audio Input\n",
"\n",
"The audio input has a nominal peak-to-peak voltage limit of 3.3V. To achieve good decode performance, it needs a nominal 200mV peak-to-peak input level. However it can work with input levels much lower than this.\n",
"\n",
"The audio input circuit starts with a DC-blocking capacitor and a programmable DC-offset section required to set the proper DC bias for the audio section. This programmable DC offset is required because there is an additional component of the audio input circuit that is not apparent in the schematic. There is a built-in programmable gain amplifier (PGA) in the MCU that is used and this requires varying DC offsets depending on the gain selected. The gain is selectable from 0dB, 6dB, 12dB, 18db, & 24dB.\n",
"\n",
"The input voltage is limited via two Schottkey diodes and then fed into a buffer. The audio is fed through a 3-pole Bessel anti-aliasing filter with a cut-off of 7200Hz. This is then fed into the PGA and ADC of the MCU.\n",
"\n",
"There are a number of components in this subsection:\n",
"\n",
" * C2 - 220nF DC blocking capacitor.\n",
" * R1 - 10K DC-offset resistor, along with C2 forms a 72Hz high-pass filter.\n",
" * D1, D2 - voltage limiter.\n",
" * U1C - audio buffer.\n",
" * R7, R10, R14, C4, C6, C8, and U1D - 3-pole active Bessel anti-aliasing filter.\n",
" \n",
"The quad op amp U1 is shared across the Audio Input and Audio Output sections.\n",
" \n",
"Audio signal from the radio is fed through the capacitor C2 to block DC from the radio. A DC bias voltage fed in from the MCU's DAC channel 2 (PA5) through a 10K resistor (R1), forming a high-pass filter. This then passes through a pair of diodes which limit the voltage begin fed into the op-amp. Amplified audio from a radio's speaker output can easily exceed the voltage limits of the op amp inputs. The op-amp U1C is an audio buffer to provide the low output impedance to feed the anti-aliasing filter.\n",
"\n",
"The anti-aliasing filter is a low-pass filter designed to limit noise beyond the Nyquist range of the analog to digital converter (ADC) in the microcontroller. The ADC samples the audio data at 26400 samples per second. The Nyquist frequency is half the sample rate, or 13.2kHz. Any noise in the input signal beyond the Nyquist range will be folded back into the sampled data. The anti-aliasing filter limits the power of the noise outside the Nyquist range by at least 20dB.\n",
"\n",
"https://en.wikipedia.org/wiki/Anti-aliasing_filter\n",
"\n",
"After the anti-alaising filter, the audio enters the MCU. Inside the MCU is a programmable gain amplifier (PGA) which can amplify the audio signal in discrete steps of 1X (0dB), 2X, 4X, 8X, and 16X. The DC offset of the amplifier changes based on the amplification level from 1/2 to 1/32 (1.65V - 100mV). The bias voltage output by DAC channel 2 is adjusted in step with the amplification level by the firmware in the TNC.\n",
"\n",
"### Audio Output\n",
"\n",
"Audio output from the TNC is generated by the MCU on DAC channel 1 (PA4). This is output at 26400 samples per second, resulting in 22 samples per bit. The output of the DAC looks like stair-steps, with discrete jumps in the various levels.\n",
"\n",
"The output of the DAC is fed into a low-pass reconstruction filter, which is a 7200Hz, 3-pole Bessel filter, exactly the same as the anti-aliasing filter on the input side. The output of the reconstruction filter results in a smooth, sine-wave output expected from an audio signal.\n",
"\n",
"The outut of the DAC has about 24dB of dynamic range for output volume control. Immediately after the reconstruction filter there is a 1/16 voltage divider formed by R8 and R9 resulting in a 24dB attenuation when PB5 is pulled low on the MCU. This divider give the output stage a range of about 48dB.\n",
"\n",
"The output of filter is then buffered and passes through a decoupling cap C2 to the MIC+ line of the radio. The resistors R2 and R3 are there to ensure stability of the output stage. C3 ensures proper isolation from GND. I cannot find my notes on exactly why these were added.\n",
"\n",
"The audio output section has the following components:\n",
"\n",
" * R12, R15, R16, C5, C9, C7, U1A - 3-pole Bessel reconstruction filter.\n",
" * R8, R9 - switchable 24dB audio attenuator.\n",
" * U1B - buffer.\n",
" * C2, C3, R2, R3 - AC coupling capacitor and output compensation.\n",
"\n",
"\n",
"### Nucleo Board\n",
"\n",
"The TNC uses an STM32L432KC Nucleo32 board. This contains a 32-bit ARM Cortex-M4F CPU, along with numerous peripherals, 64kB of SRAM and 256KB or flash program memory.\n",
"\n",
"https://os.mbed.com/platforms/ST-Nucleo-L432KC/\n",
"\n",
"The Nucleo board presents two interfaces when connected to a computer: a serial interface and a mass storage device. The mass storage device is used to program the MCU. Firmware is copied to the mass storage device and instantly uploaded to the microcontroller. The serial interface connects to pins PA2 (TX) and PA15 (RX). These two pins are not exposed on the Nucleo board.\n",
"\n",
"The Nucleo board provides power to the breadboard via the +3V3 pin and the two GND pins. The TNC3 was designed for very low power. The circuitry we will be implementing draws very little additional power from the board.\n",
"\n",
"The microcontroller can run at up to 80MHz. For this project we will run the MCU at 48MHz, which is still more than we really need.\n",
"\n",
"## Bill of Materials\n",
"\n",
"To build this project, you will need the following items:\n",
"\n",
" * Standard 830 point breadboard (such as an Elenco Model 9425)\n",
" * Jumper wire. I prefer pre-made flexible wires with pin headers, along with short stuff jumpers for connecting power rails.\n",
" * Micro-USB cable to connect the computer to the Nucleo board for both programming and accessing the TNC.\n",
" \n",
"Breadboard TNC Components:\n",
"\n",
" \n",
"| Manufacturer \t| Manufacturer Part Number \t| Description \t| Quantity \t| Unit Price \t| Extended Price \t|\n",
"|--------------------------------------\t|--------------------------\t|----------------------------------\t|----------\t|------------\t|----------------\t|\n",
"| SparkFun Electronics \t| BOB-11570 \t| SPARKFUN TRRS 3.5MM JACK BREAKOU \t| 1 \t| 3.95 \t| 3.95 \t|\n",
"| Vishay Semiconductor Diodes Division \t| BAT85S-TAP \t| DIODE SCHOTTKY 30V 200MA DO35 \t| 2 \t| 0.38 \t| 0.76 \t|\n",
"| STMicroelectronics \t| NUCLEO-L432KC \t| NUCLEO-32 STM32L432KC EVAL BRD \t| 1 \t| 10.99 \t| 10.99 \t|\n",
"| Microchip Technology \t| MCP6004-I/P \t| IC OPAMP GP 4 CIRCUIT 14DIP \t| 1 \t| 0.45 \t| 0.45 \t|\n",
"| Microchip Technology \t| 24LC32A-I/P \t| IC EEPROM 32K I2C 400KHZ 8DIP \t| 1 \t| 0.41 \t| 0.41 \t|\n",
"| Microchip Technology \t| 2N7000-G \t| MOSFET N-CH 60V 0.2A TO92-3 \t| 2 \t| 0.38 \t| 0.76 \t|\n",
"| Broadcom Limited \t| HLMP-1301 \t| LED RED DIFFUSED T-1 T/H \t| 1 \t| 0.41 \t| 0.41 \t|\n",
"| Broadcom Limited \t| HLMP-1503 \t| LED GREEN DIFFUSED T-1 T/H \t| 1 \t| 0.41 \t| 0.41 \t|\n",
"| Stackpole Electronics Inc \t| RNF18FTD100K \t| RES 100K OHM 1/8W 1% AXIAL \t| 3 \t| 0.1 \t| 0.30 \t|\n",
"| Stackpole Electronics Inc \t| RNF14FTD10K0 \t| RES 10K OHM 1/4W 1% AXIAL \t| 1 \t| 0.1 \t| 0.10 \t|\n",
"| Stackpole Electronics Inc \t| RNMF14FTC510R \t| RES 510 OHM 1/4W 1% AXIAL \t| 2 \t| 0.1 \t| 0.20 \t|\n",
"| Stackpole Electronics Inc \t| RNMF14FTC6K80 \t| RES 6.8K OHM 1/4W 1% AXIAL \t| 1 \t| 0.1 \t| 0.10 \t|\n",
"| Stackpole Electronics Inc \t| RNF14FTD470R \t| RES 470 OHM 1/4W 1% AXIAL \t| 4 \t| 0.1 \t| 0.40 \t|\n",
"| Stackpole Electronics Inc \t| RNMF14FTC220R \t| RES 220 OHM 1/4W 1% AXIAL \t| 2 \t| 0.1 \t| 0.20 \t|\n",
"| Stackpole Electronics Inc \t| RNMF14FTC2K20 \t| RES 2.2K OHM 1/4W 1% AXIAL \t| 3 \t| 0.1 \t| 0.30 \t|\n",
"| Stackpole Electronics Inc \t| RNMF14FTC16K0 \t| RES 16K OHM 1/4W 1% AXIAL \t| 2 \t| 0.1 \t| 0.20 \t|\n",
"| Stackpole Electronics Inc \t| RNMF14FTC30K0 \t| RES 30K OHM 1/4W 1% AXIAL \t| 2 \t| 0.1 \t| 0.20 \t|\n",
"| Vishay BC Components \t| K471J15C0GF53L2 \t| CAP CER 470PF 50V C0G/NP0 RADIAL \t| 2 \t| 0.22 \t| 0.44 \t|\n",
"| AVX Corporation \t| SR201A102JAR \t| CAP CER 1000PF 100V C0G/NP0 RAD \t| 2 \t| 0.29 \t| 0.58 \t|\n",
"| Vishay BC Components \t| K103M15X7RF53L2 \t| CAP CER 10000PF 50V X7R RADIAL \t| 1 \t| 0.21 \t| 0.21 \t|\n",
"| AVX Corporation \t| SR215C104KAA \t| CAP CER 0.1UF 50V X7R RADIAL \t| 2 \t| 0.2 \t| 0.40 \t|\n",
"| TDK Corporation \t| FG14X7R1H224KNT00 \t| CAP CER 0.22UF 50V X7R RADIAL \t| 1 \t| 0.3 \t| 0.30 \t|\n",
"| TDK Corporation \t| FG28X7R1A225KRT06 \t| CAP CER 2.2UF 10V X7R RADIAL \t| 1 \t| 0.34 \t| 0.34 \t|\n",
"| Vishay BC Components \t| K333K15X7RF5TL2 \t| CAP CER 0.033UF 50V X7R RADIAL \t| 2 \t| 0.23 \t| 0.46 \t|\n",
"\n",
"\n",
"The total component cost for these items is about $25 USD from Digikey.\n",
"\n",
"You can purchase these directly from Digi-Key using this link: https://www.digikey.com/short/phmpd4\n",
"\n",
"It might be worthwhile to buy an extra one of each of the passive components in case one is lost or a lead is accidentally cut too short.\n",
"\n",
"\n",
"### Substitutions\n",
"\n",
"Note that we are using high-quality C0G/NP0 capacitors and 1% resistors in the audio filters in order to ensure the best accuracy. This is what we use in the TNC3. It is certainly possible to substitute less expensive components if you have them readily available. We specify 3mm T-1 LEDs. You can certainly use 5mm LEDS if that's what you have. You can replace the MOSFETs with general purpose N-type transistors. You can also substitute two dual-channel op amps for the one quad op amp. Just ensure that your op amp has a similar 1MHz bandwidth. This is required by the active filter. And you will need to address the layout changes required as a result of any part change.\n",
"\n",
"The actual resistor and capacitor values used by the audio section are important.\n",
"\n",
"The size of the EEPROM cannot be changed because doing so changes the page size, which is fixed in the firmware.\n",
"\n",
"The Nucleo board cannot be substituted. *The firmware will only work with the specified board.*\n",
"\n",
"\n",
"## Equipment\n",
"\n",
"In order to build and test the Nucleo TNC, you will need:\n",
"\n",
" * An amateur radio license.\n",
" * A 2-meter VHF amateur radio.\n",
" * A computer running Linux.\n",
" * Either a home-made cable to connect the radio to the TNC or a cable from https://store.mobilinkd.com/collections/tnc-cables\n",
" * A dummy load and a cable to connect the radio to the dummy load.\n",
" * An external antenna, that can be mounted well away from the breadboard.\n",
" * Diagonal cutters to trim the leads of the passive components (resistors, capacitors, and diodes).\n",
" * Grounded anti-static mat and wrist-strap.\n",
" * Access to USB power from the assembly area.\n",
" \n",
"A dummy load allows an amateur radio operator to test his or her equipment without interfering with others, and without accidentally damaging their own equipment. It is an important tool in every experimenter's toolbox.\n",
"\n",
"Nice to have equipment:\n",
"\n",
" * An extra 2M radio.\n",
" * An RTL-SDR (Ultra-cheap SDR).\n",
" * A digital multimeter (DMM).\n",
" * An oscilloscope.\n",
" * A signal generator.\n",
"\n",
"\n",
"## Assembly\n",
"\n",
"The assembly process is divided into a few different steps, most of them following the major components in the schematic.\n",
"\n",
" * Install the larger components: Nucleo board, op amp, EEPROM, phone jack.\n",
" * Install the bypass capacitors for the op amp and EEPROM.\n",
" * Connect power and ground rails.\n",
" * Install the LEDs and their current limiting resistors.\n",
" * Install the PTT circuitry: MOSFETS & resistors.\n",
" * Install the I2C pull-up resistors for the EEPROM.\n",
" * Install the diodes, resistors and capacitors for the audio input section.\n",
" * Install the resistors and capacitors for the audio input section.\n",
" * Install the resistors and capacitors for the audio output section.\n",
" * Connect the Nucleo board to the various subsystems.\n",
" * Connect the rest of the components together.\n",
" \n",
"Breaking the assembly down in this manner will allow us to test the various subsystems as we go to ensure they are working correctly.\n",
"\n",
"These assembly instructions assume you can plug the Nucleo board into USB power for testing.\n",
"\n",
"Note that the breadboard is labelled with rows 1-63 and columns a-j. We will be using these to align the parts to the board.\n",
"\n",
"<DIV style=\"background-color: #ffffce\">\n",
"Assemble the Nucleo TNC on a well-grouned anti-static mat and wear a grounding wrist strap when assembling the board. The Nucleo board, the ICs and the MOSFETs are static-sensitive devices and can be damaged by static discharge from your body that you cannot feel.\n",
"</DIV>\n",
"\n",
"\n",
"### Nucleo and ICs\n",
"\n",
"**Parts Required:**\n",
"\n",
" * Nucleo board\n",
" * MCP6004 quad op amp IC\n",
" * 24LC32A EEPROM IC.\n",
"\n",
"Install the Nucleo board, EEPROM and quad op-amp as shown. Note the orientation of the components.\n",
"\n",
" * The Nucleo board starts at row 1. Insert the board pins into columns *d* and *h*. Orient the board so that the USB port is nearest row 1, so that it is easily accessible.\n",
" * Insert the 24LC32 EEPROM into rows 21-24, columns *e* and *f*, with pin 1 on row 21.\n",
" * Insert the MCP6004 quad op amp into rows 32-38, columns *e* and *f*, with pin 1 on row 38. Note that this is the opposite orientation of the EEPROM.\n",
"\n",
"The chips are oriented this way so that only one 3.3V power rail is needed at the top, closest to column *j*.\n",
"\n",
"![Step 1](AssemblyStep1.png)\n",
"The NucleoTNC after the first step in the assembly.\n",
"\n",
"### Bypass Capacitors\n",
"\n",
"**Parts Required:**\n",
"\n",
" * 2 100nF capacitors\n",
"\n",
"Install the 100nF bypass capacitors across the VDD and VSS pins of the two ICs. The capacitors are going to straddle the chips. Trim the leads so that the capacitors nearly touch the IC body.\n",
"\n",
"Refer to the datasheets in the [Reference](#Reference) section above to confirm the pin configuration.\n",
"\n",
" * Insert one capacitor across the EEPROM, inserting one leg into *g21* and the other into *d24*.\n",
" * Insert the other capacitor across the quad op amp, inserting one leg into *d35* and the other into *g35*.\n",
"\n",
"![Step 2](AssemblyStep2.png)\n",
"The NucleoTNC with the bypass capacitors installed on the ICs.\n",
"\n",
"### Power and Ground\n",
"\n",
"**Parts Required:**\n",
"\n",
" * 8 short, stiff wires.\n",
"\n",
"We are now going to connect the power and ground rails to the Nucleo board, the op amp, EEPROM, and the 3.5mm jack which we will be installing shortly.\n",
"\n",
" * Connect pin *j2* to the upper ground rail (blue).\n",
" * Connect pin *a4* to the lower ground rail.\n",
" * Connect pin *j14* to the upper power rail (red).\n",
" * Connect pin *j21* to the upper power rail.\n",
" * Connect pin *a24* to the lower ground rail.\n",
" * Connect pin *j35* to the upper power rail.\n",
" * Connect pin *a35* to the lower ground rail.\n",
" * Connect pin *a61* to the lower ground rail.\n",
"\n",
"![Step 3](AssemblyStep3.png)\n",
"The NucleoTNC with the power and ground rails connected.\n",
"\n",
"### LEDs\n",
"\n",
"**Parts Required:**\n",
"\n",
" * 2 470 Ohm resistors\n",
" * 1 red LED\n",
" * 1 green LED\n",
"\n",
"For this step we need the two LEDs and two 470 Ohm resistors. The LEDs will be inserted between the EEPROM and the Nucleo board, so the fit may be a bit tight. The resistors will be connected from the top power rail to column *i* and the LEDs will straddle the channel in the board.\n",
"\n",
" * Trim the leads of the two 470 Ohm resistors.\n",
" * Insert one resistor into *j19* and the upper power rail.\n",
" * Insert the other resistor into *j20* and the upper power rail.\n",
" * Trim the leads of the two LEDs, noting their orientation. The longer lead is the anode and will be oriented towars the top, connecting to the resistor.\n",
" * Insert the red LED into *f19* and *e19*.\n",
" * Insert the green LED into *f20* and *e20*.\n",
"\n",
"Test the LEDs by connecting the Nucleo to USB power and use a jumper wire to connect the cathode of each LED to ground. Verify that the LED lights up. When done, disconnect the USB cable from the Nucleo board and remove the jumper wire used in the test.\n",
"\n",
"----\n",
"<DIV style=\"background-color: #ffffce\">\n",
"Be gentle with the Nucleo board's USB connector. It can be damaged if too much force is used to insert or extract the USB cable, or if the USB cable is forcefully moved when it is plugged into the device.\n",
"</DIV>\n",
"\n",
"![Step 4](AssemblyStep4.png)\n",
"The NucleoTNC with the LEDs assembly complete. The LEDs provide visual indication of transmit and receive.\n",
"\n",
"### 3.5mm Jack\n",
"\n",
"**Parts required:**\n",
"\n",
" * SparkFun BOB-11570 breakout board.\n",
"\n",
"The sleeve of the 3.5mm jack needs to be connected to ground. In order to preserve space on the board, the ground connection is going to be made underneath the jack breakout board.\n",
"\n",
"Note: *The breakout board shown in the images is not the same as the one specified in the BOM.* These layout instructions assume that you are using the SparkFun BOB-11570 in place of the board shown.\n",
"\n",
" * Insert the 3.5mm jack breakout board into *b58-b61*.\n",
" \n",
"![Step 5](AssemblyStep5.png)\n",
"The NucleoTNC with the 3.5mm jack installed. This provides the interface between the TNC and the radio.\n",
"\n",
"### PTT\n",
"\n",
"**Parts required:**\n",
"\n",
" * 2 2N7000 N-channel MOSFETs\n",
" * 2 220 Ohm resistors.\n",
" * 2 100K Ohm resistors.\n",
" * 1 2.2K Ohm resistor.\n",
" * 5 short, stiff jumper wires.\n",
"\n",
"We will now install the PTT circuitry and connect it to the 3.5mm jack. The two MOSFETs provide simplex and multiplex PTT signalling.\n",
"\n",
"Refer to the 2N7000 datasheet in the [References](#References) section to understand the pinout and orientation of the TO-92 body.\n",
"\n",
" * Insert a 100K resistor at *j52* and the upper ground rail.\n",
" * Insert a 100K resistor at *j55* and the upper ground rail.\n",
" * Insert a 2.2K resistor at *j54* and the upper ground rail.\n",
" * Insert a jumper wire across *j51* and the upper ground rail.\n",
" * Insert one 2N7000 with the flat face towards the lower rails at *i51-i53*.\n",
" * Insert one 2N7000 with the flat face towards the lower rails at *i54-i56*.\n",
" * Insert one 220 Ohm resistor across the gap at *e52-f52*.\n",
" * Insert one 220 Ohm resistor across the gap at *e55-f55*.\n",
" * Insert a jumper wire from *g53-g59*.\n",
" * Insert a jumper wire from *h56-h60*.\n",
" * Insert a jumper wire across the gap at *e59-f59*.\n",
" * Insert a jumper wire across the gap at *e60-f60*.\n",
"\n",
"![Step 6](AssemblyStep6.png)\n",
"The NucleoTNC with the PTT assembly complete.\n",
"\n",
"### EEPROM Connections\n",
"\n",
"**Parts required:**\n",
"\n",
" * 4 short, stiff jumper wires.\n",
" * 2 2.2K Ohm resistors\n",
"\n",
"We now need to connect the EEPROM address lines and write-protect line to ground, and connect the I2C SCL and SDA lines to 3.3V through the two pull-up resistors.\n",
"\n",
"Refer to the 24LC32A datasheet in the [References](#References) section to understand the pinout of this chip.\n",
"\n",
"We are going to be connection pins 1,2,3 & 7 to ground. And we are going to connect pins 5 & 6 to the pullup resistors.\n",
"\n",
" * Insert a jumper wire across *a21* and the lower ground rail.\n",
" * Insert a jumper wire across *a22* and the lower ground rail.\n",
" * Insert a jumper wire across *a23* and the lower ground rail.\n",
" * Insert a jumper wire across *j22* and the upper ground rail.\n",
" * Insert a 2.2k Ohm resistor from *j23* to the upper power rail.\n",
" * Insert a 2.2k Ohm resistor from *j24* to the upper power rail.\n",
"\n",
"![Step 7](AssemblyStep7.png)\n",
"The NucleoTNC with the EEPROM assembly complete.\n",
"\n",
"The next two steps are the most involved, as we will be constructing the audio input and output filters.\n",
"\n",
"### Audio Input Circuitry\n",
"\n",
"**Parts required:**\n",
"\n",
" * 2 BAT85S Schottkey diodes.\n",
" * 1 220nF capacitor.\n",
" * 1 33nF capacitor.\n",
" * 1 1nF capacitor.\n",
" * 1 470pF capactor.\n",
" * 1 10kΩ resistor.\n",
" * 1 16kΩ resistor.\n",
" * 1 30kΩ resistor.\n",
" * 1 510Ω resistor.\n",
" * Various jumper wires.\n",
" \n",
"We will now create the audio input section, including the AC coupling cap, DC offset connection, protection diodes, input buffer, and anti-aliasing filter.\n",
"\n",
" * Connect a wire from *c58-c50*\n",
" * Connect one diode from *a49* to the lower ground rail. The cathode band should be nearest *a49*.\n",
" * Connect one diode from *j49* to the upper power rail. The cathode bnad should be neares the power rail.\n",
" * Connect a jumper wire across the *e49-f49* gap.\n",
" * Connect the 220nF capacitor from *e50* to *g49*.\n",
" * Connect a wire from *i49* to *i36*.\n",
" * Connect a short jumper from *g37* to *g38*, tying VinA- to VoutA\n",
" * Connect a short jumper from *g32* to *g33*, tying VinB- to VoutB\n",
" * Connect the 470pF capacitor from *j34* to the upper ground rail.\n",
" * Connect the 30kΩ resistor from *j37* to *j41*.\n",
" * Connect the 16kΩ resistor from *g41* to *g34*. Ensure it is not shorted against the jumper between *g37* and *g38* or the decoupling capacitor at *g35*.\n",
" * Connect the 1nF capacitor from *h41* to *h33*.\n",
" * Connect the 510Ω resistor from *i32* to *i29*.\n",
" * Connect the 33nF capactor from *j29* to the upper ground rail.\n",
"\n",
"![Step 8](AssemblyStep8.png)\n",
"The NucleoTNC with the audio input section assembled.\n",
"\n",
"### Audio Output Circuitry\n",
"\n",
"**Parts required:**\n",
"\n",
" * 1 2.2uF capacitor.\n",
" * 1 33nF capacitor.\n",
" * 1 10nF capacitor.\n",
" * 1 1nF capacitor.\n",
" * 1 470pF capactor.\n",
" * 1 16kΩ resistor.\n",
" * 1 30kΩ resistor.\n",
" * 1 510Ω resistor.\n",
" * 2 470Ω resistors.\n",
" * 1 6.8kΩ resistor.\n",
" * 1 100kΩ resistor.\n",
"\n",
"We will now wire up the audio output circuitry; the reconstruction filter and output buffer.\n",
"\n",
" * Connect a short jumper from *d32* to *d33*, tying VinC- to VoutC\n",
" * Connect a short jumper from *d37* to *d38*, tying VinD- to VoutD\n",
" * Insert the 30kΩ resistor, spanning *e26* to *e30*.\n",
" * Insert the 16kΩ resistor, spanning *c30* to *c34*.\n",
" * Insert the 470pF capacitor, spanning *a34* to the lower ground rail.\n",
" * Insert the 1nF capacitor, spanning *b30* to *b32*.\n",
" * Insert the 510Ω resistor, spanning *b33* to *b39*.\n",
" * Insert the 33nF capacitor, spanning *a39* to the lower ground rail.\n",
" * Insert the 100kΩ resistor, spanning *d39* to *d36*.\n",
" * Insert the 6.8kΩ resistor, spanning *c36* to *c40*.\n",
" * Insert a small insulated jumper from *a38* to *a41*, being careful to avoid shorting the capacitor at *a39*.\n",
" * Insert a 470Ω resistor from *c41* to *c46*.\n",
" * Insert a 470Ω resistor from *b41* to *b45*.\n",
" * Insert a 10nF capacitor from *a46* to the lower ground rail.\n",
" * Insert a 2.2uF capacitor from *e45* to *e47*.\n",
" * Connect a jumper wire from *d47* to *d60*.\n",
" \n",
"![Step 9](AssemblyStep9.png)\n",
"The NucleoTNC with the audio output section assembled. Note that there is a jumper from *d37* to *d38* hidden underneath the 100kΩ resistor.\n",
"\n",
"### Wiring\n",
"\n",
"This is the final step in wiring up the breadboard TNC. For this step, we are simply using jumper wires to connect the Nucleo board to the various inputs, outputs and control likes of the circuitry we just built.\n",
" \n",
" * Connect a wire from *a12* to *a19* for TX LED control.\n",
" * Connect a wire from *a1* to *a20* for DCD LED control.\n",
" * Connect a wire fram *a5* to *a52* for simplex PTT control.\n",
" * Connect a wire from *a13* to *a55* for multiplex PTT control.\n",
" * Connect a wire from *a14* to *b40* for audio output attenuation control.\n",
" * Connect a wire from *a15* to *i24* for I2C SDA on the EEPROM.\n",
" * Connect a wire from *j6* to *i23* for I2C SCL on the EEPROM.\n",
" * Connect a wire from *j8* to *j46* for DC offest control.\n",
" * Connect a wire from *j9* to *a26* for the DAC audio output.\n",
" * Connect a wire from *j12* to *h29* for the ADC audio input.\n",
" \n",
"![Step 10](AssemblyStep10.png)\n",
"The completely assembled NucleoTNC.\n",
"\n",
"## Programming\n",
"\n",
"Programming is fairly simple. When you plug the Nucleo board into your computer, a new drive (mount point) will appear. Programming is done by simply copying the firmware file into this new mount point.\n",
"\n",
"## Testing & Troubleshooting\n",
"\n",
"After the TNC starts up\n",
"\n",
"## Operation\n",
"\n",
"Before we begin -- a word of warning.\n",
"\n",
"----\n",
"<DIV style=\"background-color: #ffffce\">\n",
"<span style=\"font-weight: bold\">Do not tranmit RF near the Nucleo TNC.</span> Use a dummy load when testing and use an external antenna that is mounted well away from the TNC when operating the TNC on the air. The long wires used in the assembly of the TNC, and the breadboard itself can act as antennas and will conduct RF energy into the TNC components and any equipment you have attached to it, including your computer. This may cause the TNC to misbehave and can potentially damage your equipment.\n",
"</DIV>\n",
"\n",
"----\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.3"
}
},
"nbformat": 4,
"nbformat_minor": 2
}