Hello,
i am using nRF52832 Development kit.
and segger embedded studio for debugging
i have just started with NFC module. i run the NFC example "record_url" and it is working fine
Now i want to modify this example and add the id( which is derived by me and it is uint32_t type)
so my url look like "mysite.com/id=<id>"
suppose i have one variable
uint32_t id = 12345;
here i want to add this id in my url
is it possible to add this type of id in the url because as i go through the example, the url buffer is const and i have uint32_t type id value which i want to add in url.
i don't know how i can add this.
can you please help me with this.