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)
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
HOW does a 8 bit processor interpret the 2 bytes of a 16 bit number to be a single piece of info?
Assume the 16 bit no. to be 256.
So,
byte 1 = Some binary no.
byte 2 = Some binary no.
But byte 1 also represents a 8 bit no.(Which could be an independent decimal number) and so does byte 2..
So how ...
Abdullah Gulam Rasool Mastan
Votes: 0
Answers: 1
How do I increase the speed of my microprocessor?
This is my PC's specification:
Processor Intel(R) Core(TM) i3-5005U CPU @ 2.00GHz 2.00 GHz
Installed RAM 4.00 GB
System type 64-bit operating system, x64-based processor
How do I increase proces...
Gordon Atsunyo
Votes: 0
Answers: 1
How can I write a code that loops 256 times using only 3 instructions and one 8-bit register (8086 instruction set)?
This was a question that was previously posed by a prof of mine and I'm assuming the 8-bit register is either CL or CH. I got it working by simply moving 01H to the CH register, but I was wondering if...
Chronos
Votes: 0
Answers: 1