python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Audio transmitted in uint8_t into a .wav file
I am trying to transmit audio using CAN FD and the data format it sends it is in uint8_t, when the sample I take from the microphone with the ADC is an uint32_t. Will I have any problem trying to inse...
Suspe18
Votes: 0
Answers: 1
C++ Convert to hex and store the result in uint8_t
std::stringstream sstream;
uint8_t data[1] = { };
int x =1;
sstream << "0x" << std::hex << x; //sstream = 0x04b35cc8 "0x1" why the sstream not be...
user216905
Votes: 0
Answers: 0
Converting uint8_t hex to string hex in C
In this case, i use an algorithm hashing to implementating blockchain, and then my algorithm is working properly but the output need to return string. This is my function to try only print the output ...
Angga Danar Prasetyo
Votes: 0
Answers: 0