Krupis

Results 55 comments of Krupis

> Have you checked what value LoRa_init() function returns? Yes. I have added the following to my code: ``` LoRa_reset(&myLoRa); uint16_t lora_ret = LoRa_init(&myLoRa); printf("Lora return value = %u \n",lora_ret);...

If it would be helpful, I can connect logic analyzer to SPI pins and check what happens

@SMotlaq I have modified my receiver code as following: ``` if(MODA_LORA == 0){ printf("Starting RX mode \n"); LoRa_startReceiving(&myLoRa); uint8_t received_data[10]; memset(received_data, NULL, 10); uint8_t packet_size = 0; while(1){ packet_size =...

> I will run your code on my hardware as soon as possible and tell you the result. Sounds good. Please let me know if you are able to reproduce...

@SMotlaq I have recently watched your Youtube video regarding this library. I have noticed a few comments: ![image](https://github.com/SMotlaq/LoRa/assets/22237034/af7eaaf8-8e1e-42ae-8022-9fa0319fb2fe) Perhaps my issue is related to this? In my case, NVIC settings...

@SMotlaq Additionally, I do not fully understand whether DIO0 signal is set high or low when message is received? Could you confirm whether it is active LOW or active HIGH?...

@SMotlaq I will try to receive using EXT interrupt and post back the results

@k-takata I have Git for Windows but winpty does not seem to be working. ``` C:\Users\petrikas.lu\Desktop\WORK\raktai\rootca>git --version git version 2.43.0.windows.1 ```

I figured it out! If you try to use this command from Git bash, it will work.. I have initially tried to use this command via regular Command Prompt. Is...

Thanks for some useful insights. Using docker executor in gitlab-runner only works if the default entrypoint is a shell. For this particular case, since it is not a shell, I...