Hello
I used enum function to input a set of values. I want to concatenate them . Like one set of enum function i used say
slave address, from 0000 till 1111
bus address, from 000 -- 111
read/ write bit. 0 -1
this would generate a 8 bit patteren as user could select from the enum functions. how could i concatenate them into say single number '0000 100 0' the first four bits being the slave address, the next three being the bus addr. and the last read write bit.
Since I could not find the conactenate on enum. i used combo box..i can concatenate the strings but my input needs to be binary and it does not take string. is there any way I can use either the enum with binary or convert the string to binary..
Ravi