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
STM32F4 Timer Triggered DMA SPI – NSS Problem
I have a STM32F417IG microcontroller an external 16bit-DAC (TI DAC81404) that is supposed to generate a Signal with a sampling rate of 32kHz. The communication via SPI should not involve any CPU resou...
enrpr
Votes: 0
Answers: 1
Acumatica Delete from Graph
I would like to delete a record from a graph, I can easily add one, but what is the syntax for deleting one with filter on Immatriculation field :
Example do add
ZVEHICULEGRAPH graph = PXGraph.CreateI...
Xavier LARTEM
Votes: 0
Answers: 1
Only hear noise of audio out of DAC
I have been trying to hear the real time audio I get from the ADC into the DAC and listen to it through the headphones I connected. I am using a STM32G01CE-EV board, but when I try to listen to the da...
Suspe18
Votes: 0
Answers: 1