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
diff --git a/Software/src/Version 6/MorseOutput.cpp b/Software/src/Version 6/MorseOutput.cpp | |
index 8e906d8..5e07d6e 100644 | |
--- a/Software/src/Version 6/MorseOutput.cpp | |
+++ b/Software/src/Version 6/MorseOutput.cpp | |
@@ -48,6 +48,7 @@ DisplayWrapper display; | |
#ifdef CONFIG_SOUND_I2S | |
#include "I2S_Sidetone.hpp" | |
I2S_Sidetone sidetone; | |
+uint8_t last_volume = MorsePreferences::sidetoneVolume; | |
#endif |
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
#!/usr/bin/python3 | |
import sys | |
import serial | |
import re | |
import gevent | |
import gevent.pywsgi | |
import gevent.queue | |
from tinyrpc.server.gevent import RPCServerGreenlets |
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
/*---------------------------------------------------------------------------*/ | |
/*! @brief Brass Cartridge Case Annealer. | |
@details None. | |
@author Justin Spence, Mark Griffith. 2020 | |
@note circuitworksnz@gmail.com | |
*//*-------------------------------------------------------------------------*/ | |
//--Includes------------------------------------------------------------------- | |
#include <SPI.h> | |
#include <Wire.h> |
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
#!/bin/bash | |
if [ -z $2 ]; then | |
echo | |
echo "Usage: $(basename $0) <ceph.log> <osd-tree>" | |
echo | |
exit 1 | |
fi | |
if [ ! -e $1 ]; then |