Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
main.cpp
00001 #include "mbed.h" 00002 #include "AD7390.h" 00003 00004 SPI spi(p5,p6,p7); 00005 AD7390 Test(spi,p10,p11); 00006 00007 int main(){ 00008 Test.Init(10000000); 00009 while (true){ 00010 Test.Reset(); 00011 for (float V = 0; V !=3.3; V=V+0.005){ 00012 Test.WriteL(V,3.3); 00013 wait(0.02); 00014 } 00015 00016 } 00017 } 00018
Generated on Thu Jul 14 2022 20:50:24 by
1.7.2