python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Assembly 16 bit illogical mistake (?)
I don't understand why this code print me the char I've insert back and the alphabet string if nobody told him to do it...
.model
.stack 100h
.data
lettere DB 10 DUP(?)
frase1 DB 10,13,"inserisc...

CRL
Votes: 0
Answers: 1
16 bit to 12 bit conversion between microcontroller and dac
#include "mbed.h"
DigitalOut gpo(PTD7);
AnalogOut Aout(PTE30);
float x;
unsigned int i,j;
int main() {
x=0;
i=0;
while(1) {
gpo=i & 1;
x=16*2047.0*(1+sin(2*3.142*i...
brownspiderman
Votes: 0
Answers: 0
Covert from 16bit representation
I receive 16bit data as UInt16 on Swift code.
16bit data correspond to the following decimal number
0x0000:-2
0x8000:0
0xFFFF:+2
How to convert 16 bit data into decimal number correspond as above on...
Bigair
Votes: 0
Answers: 1
How to convert 16bit raw data into png image to show in browser?
I have 16 bit raw data as base64 string. Want to convert that into png image, based on depth 8,16,24.
// code to process 16bit buffer array
function process16bitBitmap(buffer, options = {}) {
const vi...
Mohd. Shariq
Votes: 0
Answers: 1