Search found 3 matches
- Tue Jul 25, 2023 5:36 am
- Forum: General Discussion
- Topic: Porting Nordic Semiconductor Software to ESP32
- Replies: 1
- Views: 900
Porting Nordic Semiconductor Software to ESP32
Hello everyone, We are currently utilizing a Nordic Semiconductor chip for our Bluetooth Low Energy (BLE) operations. However, we are considering the possibility of migrating our software to the ESP32 platform. Our goal is to determine if it is feasible to port the existing software from Nordic Semi...
- Sat Jun 24, 2023 7:06 am
- Forum: General Discussion
- Topic: How to get raw ip packets without ip headers in esp32/lwip
- Replies: 3
- Views: 1793
Re: How to get raw ip packets without ip headers in esp32/lwip
My bad for phrasing it wrong, I want to send raw packets, but while sending the raw packets, the ip headers are automatically added which i don't want. How to just send the raw socket ?
Thank you
Thank you
- Wed Jun 21, 2023 3:34 pm
- Forum: General Discussion
- Topic: How to get raw ip packets without ip headers in esp32/lwip
- Replies: 3
- Views: 1793
How to get raw ip packets without ip headers in esp32/lwip
Hii all, I am new to esp32 developement, i was trying out socket program to send raw ip packets, the code for the same is int sock = socket(AF_INET, SOCK_RAW, IPPROTO_RAW); if (sock < 0) { ESP_LOGE(TAG, "Failed to create socket: %d", errno); vTaskDelete(NULL); } struct sockaddr_in dest_addr; memset(...