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
SD Card Reader issues with mbed OS 5/6
My coworker and I are having a rough time trying to get a Sparkfun SD card breakout board to function.
We got the SDBlockDevice example code to 'function', but upon runtime it would ruin the FAT32 fil...

Jacqueline Hanlon
Votes: 0
Answers: 1
esp-tls: mbedtls_ssl_handshake returned -0x2700
I am facing the following issue which I don't really get:
E (22722) esp-tls: mbedtls_ssl_handshake returned -0x2700
E (22728) esp-tls: Failed to open new connection
E (22728) TRANS_SSL: Failed to open...
Stéphane de Luca
Votes: 0
Answers: 0
How to read/write data via BLE in Mbed OS 6?
I have an Android smartphone and a Discovery L475VG IoT development board. I am trying send/receive data (both directions) via BLE. I have consulted a good bit of documentation (although much of it is...

Jacqueline Hanlon
Votes: 0
Answers: 2