Top "Uint8t" questions

uint8_t (C language - Type).

Converting 16-bit integer to 8-bit integer?

I'm implementing C code to copy a 16-bit sign and magnitude integer to an 8-bit sign and magnitude integer. Is …

bit-shift stdint cstdint uint16 uint8t
How to determine array length of uint8_t?

I'm trying to determine array length of msg on the below code. I used strlen and sizeof but they don't …

c arrays strlen uint8t
Convert vector of uint8 to string

I have a pointer to a vector of type uint8. How would I take this pointer and convert the data …

c++ string stdvector stdstring uint8t
Convert array of uint8_t to string in C++

I have an array of type uint8_t. I want to create a string that concatenates each element of the …

c++ ostringstream uint8t
How to turn a character array into uint8_t

I have a server-client application that I'm working on that basically simulates a chat room. This is an assignment for …

c casting send recv uint8t
Identifier uint8_t is undefined - Visual Studio 2017

I get an error with the type definitions. I am working with Visual Studio 2017 and so I included stdint.h …

c++ visual-studio-2017 uint8t type-definition
Swift: Create Array of UInt8 with defined number of Values

How is it possible to create an Array of UInt8 in Swift? I've tried this with the following code: var …

swift uint8t
reinterpret_cast between char* and std::uint8_t* - safe?

Now we all sometimes have to work with binary data. In C++ we work with sequences of bytes, and since …

c++ c++11 language-lawyer strict-aliasing uint8t
Conversion between uint8 and char in C

I have an API that implements a writing operation to EEPROM. Here is its declaration: CYBLE_API_RESULT_T CyBle_…

c arrays char uint8t
How to convert a string into an uint8_t array on Arduino?

I have a string that contains both numbers and character values like "p1200" for example. I need to convert this …

c string arduino xbee uint8t