// STM32F100 and SI4032 RTTY transmitter // released under GPL v.2 by anonymous developer // enjoy and have a nice day // ver 1.5a #include #include #include #include #include #include #include #include "stdlib.h" #include #include #include "f_rtty.h" #include "fun.h" #include "init.h" #include "config.h" #include "radio.h" #include "ublox.h" #include "delay.h" ///////////////////////////// test mode ///////////// const unsigned char test = 0; // 0 - normal, 1 - short frame only cunter, height, flag char callsign[15] = {CALLSIGN}; #define GREEN GPIO_Pin_7 #define RED GPIO_Pin_8 unsigned int send_cun; //frame counter char status[2] = {'N'}; int napiecie; char flaga = ((((tx_delay / 1000) & 0x0f) << 3) | Smoc); uint16_t CRC_rtty = 0x12ab; //checksum char buf_rtty[200]; char menu[] = "$$$$$$STM32 RTTY tracker by Blasiu, enjoy and see you on the HUB... \n\r"; char init_trx[] = "\n\rPowering up TX\n\r"; unsigned char pun = 0; unsigned int cun = 10; unsigned char dev = 0; volatile unsigned char tx_on = 0; unsigned int tx_on_delay; volatile unsigned char tx_enable = 0; rttyStates send_rtty_status = rttyZero; unsigned char cun_rtty = 0; char *rtty_buf; unsigned char GPS_temp; char GPS_buf[200]; unsigned char cun_off = 0; void processGPS(); /** * GPS data processing */ void USART1_IRQHandler(void) { if ((USART1->SR & USART_FLAG_RXNE) != (u16) RESET) { ublox_handle_incoming_byte((uint8_t) USART_ReceiveData(USART1)); } } void TIM2_IRQHandler(void) { if (TIM_GetITStatus(TIM2, TIM_IT_Update) != RESET) { TIM_ClearITPendingBit(TIM2, TIM_IT_Update); } if (tx_on /*&& ++cun_rtty == 17*/) { cun_rtty = 0; send_rtty_status = send_rtty(rtty_buf); if (send_rtty_status == rttyEnd) { GPIO_SetBits(GPIOB, RED); if (*(++rtty_buf) == 0) { tx_on = 0; tx_on_delay = tx_delay / (1000/RTTY_SPEED);//2500; tx_enable = 0; radio_disable_tx(); } } else if (send_rtty_status == rttyOne) { radio_rw_register(0x73, 0x02, 1); GPIO_SetBits(GPIOB, RED); } else if (send_rtty_status == rttyZero) { radio_rw_register(0x73, 0x00, 1); GPIO_ResetBits(GPIOB, RED); } } if (!tx_on && --tx_on_delay == 0) { tx_enable = 1; tx_on_delay--; } if (--cun == 0) { cun_off++; if (pun) { GPIO_ResetBits(GPIOB, GREEN); pun = 0; } else { if (flaga & 0x80) { GPIO_SetBits(GPIOB, GREEN); } pun = 1; } cun = 200; } } #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wmissing-noreturn" int main(void) { #ifdef DEBUG debug(); #endif RCC_Conf(); NVIC_Conf(); init_port(); init_timer(RTTY_SPEED); delay_init(); ublox_init(); int8_t temperatura; GPIO_SetBits(GPIOB, RED); USART_SendData(USART3, 0xc); print(menu); radio_rw_register(0x02, 0xff, 0); //send_hex(temp); radio_rw_register(0x03, 0xff, 0); radio_rw_register(0x04, 0xff, 0); radio_soft_reset(); print(init_trx); // programowanie czestotliwosci nadawania radio_set_tx_frequency(); // Programowanie mocy nadajnika radio_rw_register(0x6D, 00 | (Smoc & 0x0007), 1); radio_rw_register(0x71, 0x00, 1); radio_rw_register(0x87, 0x08, 0); radio_rw_register(0x02, 0xff, 0); radio_rw_register(0x75, 0xff, 0); radio_rw_register(0x76, 0xff, 0); radio_rw_register(0x77, 0xff, 0); radio_rw_register(0x12, 0x20, 1); radio_rw_register(0x13, 0x00, 1); radio_rw_register(0x12, 0x00, 1); radio_rw_register(0x0f, 0x80, 1); rtty_buf = buf_rtty; tx_on = 0; tx_enable = 1; //tx_enable =0; //Button = ADCVal[1]; while (1) { if (tx_on == 0 && tx_enable) { start_bits = RTTY_PRE_START_BITS; temperatura = radio_read_temperature(); napiecie = srednia(ADCVal[0] * 600 / 4096); GPSEntry gpsData; ublox_get_last_data(&gpsData); if (gpsData.fix >= 3) { flaga |= 0x80; } else { flaga &= ~0x80; } uint8_t lat_d = (uint8_t) abs(gpsData.lat_raw / 10000000); uint32_t lat_fl = (uint32_t) abs(abs(gpsData.lat_raw) - lat_d * 10000000) / 100; uint8_t lon_d = (uint8_t) abs(gpsData.lon_raw / 10000000); uint32_t lon_fl = (uint32_t) abs(abs(gpsData.lon_raw) - lon_d * 10000000) / 100; sprintf(buf_rtty, "$$$$$$$%s,%d,%02u%02u%02u,%s%d.%05ld,%s%d.%05ld,%ld,%d,%d,%d,%02x", callsign, send_cun, gpsData.hours, gpsData.minutes, gpsData.seconds, gpsData.lat_raw < 0 ? "-" : "", lat_d, lat_fl, gpsData.lon_raw < 0 ? "-" : "", lon_d, lon_fl, (gpsData.alt_raw / 1000), temperatura, napiecie, gpsData.sats_raw, flaga); CRC_rtty = 0xffff; //napiecie flaga CRC_rtty = gps_CRC16_checksum(buf_rtty + 7); sprintf(buf_rtty, "%s*%04X\n", buf_rtty, CRC_rtty & 0xffff); rtty_buf = buf_rtty; radio_enable_tx(); tx_on = 1; send_cun++; } } } #pragma clang diagnostic pop #ifdef DEBUG void assert_failed(uint8_t* file, uint32_t line) { while (1); } #endif