GithubHelp home page GithubHelp logo

handiko / arduino-aprs Goto Github PK

View Code? Open in Web Editor NEW
90.0 6.0 57.0 7.79 MB

Create simple APRS modulator using Arduino UNO

Home Page: https://handiko.github.io/Arduino-APRS/

License: GNU General Public License v3.0

C++ 100.00%
arduino-uno grc grc-flowgraph afsk-signal arduino-aprs direwolf aprs aprs-beacon aprs-tracker arduino-skecthes

arduino-aprs's Introduction

Hi there ๐Ÿ‘‹

Handiko Gesang Anugrah Sejati, S.T.

I work primarily as a RF Engineer/RF Specialist who designed board-level RF Circuits for HF to Low-UHF range (3 MHz - 470 MHz). Occasionally, I posts articles on my website.

Primary Interest ๐Ÿ”ญ

  • Software Defined Radio (SDR), I am quite proficient in using GNU Radio tools and already made a few of Out-of-tree modules here and here.
  • Antenna and RF Design, I am experienced in designing and simulating various antenna using free software, like 4NEC-2 and MMANA-GAL. A few of the design results 1, 2, 3, 4, 5
  • RF Data Telemetry & Data Communication, I designed a hardware and wrote code and GNU Radio module to make an APRS Transmitter using an Arduino UNO and APRS receiver on GNU Radio using RTL-SDR 1, 2, 3
  • Algorithmic Forex Trading, I recently start to trade forex and written a forex swing trading strategy in MQL5 and Pinescript programming language. Trading Strategy Collections

Side Projects โšก

  • I own my private Amateur Radio Station, My Callsign is YC1SDL. Currently i am still upgrading my antenna system for 40m band (7 MHz).

I'm Currently Learning ๐ŸŒฑ

  • RF Filter Design Techniques, Primarily interested in low-cost HF-VHF RF Filter (Bandpass, Lowpass, ect.)
  • Antenna Array Design, To improve my amateur radio station capabilities.
  • Another Noise Cancelling Techniques, To improve/upgrade my NCL-100+ Noise Canceller capabilities.
  • Low Noise RF Amplification
  • Algorithmic Forex Trading

arduino-aprs's People

Contributors

handiko avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

arduino-aprs's Issues

1200/2400 Hz tones

I see that you use 1200 and 2400 Hz tones everywhere. Shouldn't APRS use 1200 and 2200, as originally?

can't decode

audio nya ada di speaker, tapi di bila TX, DireWolf tidak bisa decode. kenapa yer?

AFSK tone reversal

If you listen to the audio output of pin 2 using the Hello World example, you will notice that the preamble has a high pitch on every other transmission. Printing the first bit of each message looks like this:

MYCALL-1>APRS,WIDE2-1:>Hello World !!
1
MYCALL-1>APRS,WIDE2-1:>Hello World !!
0
MYCALL-1>APRS,WIDE2-1:>Hello World !!
1
MYCALL-1>APRS,WIDE2-1:>Hello World !!
0
MYCALL-1>APRS,WIDE2-1:>Hello World !!
1

The AFSK tones must be reversed on each transmission. Is this the expected operation?

Also, the comment says that the crc is calculated with 0x1024 but the code uses 0x8408:

/*

  • This function will calculate CRC-16 CCITT for the FCS (Frame Check Sequence)
  • as required for the HDLC frame validity check.
  • Using 0x1021 as polynomial generator. The CRC registers are initialized with
  • 0xFFFF
    */
    void calc_crc(bool in_bit)
    {
    unsigned short xor_in;

xor_in = crc ^ in_bit; // bitwise XOR
crc >>= 1;

if(xor_in & 0x01)
crc ^= 0x8408;
.
.
.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.