Replies: 9 comments 11 replies
-
I don't understand what exactly you're trying to achieve and what you tried, posting the code would help with that. |
Beta Was this translation helpful? Give feedback.
-
Hello, i try many configuration: char* repeaterCallsigns[] = { "WIDE2" }; AX25Frame frameUI("NJ7P", 0, "N7LEM", 0, RADIOLIB_AX25_CONTROL_U_UNNUMBERED_INFORMATION | char* repeaterCallsigns[] = { "WIDE2" }; The code tested follow:
AX25Frame frameUI("APFD37", 0, call, SSID, RADIOLIB_AX25_CONTROL_U_UNNUMBERED_INFORMATION |
char* repeaterCallsigns[] = { "WIDE2" }; frameUI.setRepeaters(repeaterCallsigns, repeaterSSIDs, 1); Serial.print(F("[AX.25] Sending UI frame ... ")); /* */ state = aprs.sendPosition("APFD37", 0, LATITUDE, LONGITUDE,TEXTE,GDH); // lib radiolib the frame APRS don't add "WIDE" at his frame - I dn't anderstand. |
Beta Was this translation helpful? Give feedback.
-
ok Jan Thank's for new info |
Beta Was this translation helpful? Give feedback.
-
Hi jan The frame APRS is correct (see extract log) Nota; |
Beta Was this translation helpful? Give feedback.
-
Hello Jan //----------------------------------------- // port COM carte ESP : pas besoin de librairie specifique // afficheur OLED interne carte HELTEC V2 // afficheur LCD externe (gestion I2C) // GPS - cablé sur liaison Serie2 // fonction RF 2.4GHz - heltec dans bibliothèque declaree OLED
#include <WiFi.h> // module LORA (150,400,868 MHz sur fiche SMA carte) // BLUETOOTH // WIFI // LORA (module pour radio) SX1278 radio1 = new Module(18, 26, 14, 35); // radiolib AFSKClient audio(&radio1, 25); // generation des tones sur pin 25 de l'ESP heltec V2(strapp ou resistance vers pin 34 DI02) SETUP pinMode(SCK, OUTPUT); // lora // Initialisation vitesse port COM à 115200 bauds // Initialiser interface de l'OLED oled.init(); // SSD 1306 // Initialiser interface du LCD (choisir modele) // initialisation LED bleu interne // Initialisation du GPS - /**/ // initialize APRS client |
Beta Was this translation helpful? Give feedback.
-
hi jan F6DFA-11 : ESP32 card |
Beta Was this translation helpful? Give feedback.
-
You're not going to see a sine wave there. The radio is digital, it cannot perform a true AFSK modulation. It can approximate it by using 1200 Hz and 2200 Hz square wave, which is what RadioLib generates.
RadioLib uses PWM to emulate Arduino tone function on ESP32. But that's not the point, tone() cannot produce sine wave on most Arduino platforms.
I don't understand what you're trying to say. I feel like the language barrier here is too large. |
Beta Was this translation helpful? Give feedback.
-
hello Jan |
Beta Was this translation helpful? Give feedback.
-
hello Jan currently I have a node which takes frames at 100% with a BAOFENG BF888 and a preamble at 98 |
Beta Was this translation helpful? Give feedback.
-
In first time excuse me for my bad english
I try send a frame APRS with "WIDE2-2" so i have not in github the exemple an function of this in RADIOLIB.
the simple frame without "WIDE" is correct but
I try:
setRepeaters() an many X25frame:: .... whithout result.
Thank's if you have solution of my problem
Beta Was this translation helpful? Give feedback.
All reactions