when acquiring values from certain sensors it can be meaningful to process them as unsigned and store them this way to save space. Some tricks can be used to map for example unsigned int to long, and use them instead.
Java, before version 8, doesn't support unsigned numbers. But upgrading to java 8 would also need some work.
when acquiring values from certain sensors it can be meaningful to process them as unsigned and store them this way to save space. Some tricks can be used to map for example unsigned int to long, and use them instead. Java, before version 8, doesn't support unsigned numbers. But upgrading to java 8 would also need some work.