Important update: Arm Announces End of Life Timeline for Mbed. This site will be archived in July 2026. Read the full announcement.
You are viewing an older revision! See the latest version
Compiler Error 29
- include "mbed.h"
- include "math.h"
- define PI=3.1415
AnalogOut signal(p18);
int main() { double n; while(1) { for(n=0;n<361;n+=10) { n=sin(30*PI/180); } } }