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.
portSet.hpp
00001 #pragma once 00002 #include <mbed.h> 00003 00004 inline int constrain(int x,int a,int b){ 00005 return (x < a ? a : x > b ? b : x); 00006 } 00007 00008 inline double constrain(double x,double a,double b){ 00009 return (x < a ? a : x > b ? b : x); 00010 } 00011 00012 typedef struct Port{ 00013 PinName pin[2]; 00014 }Port;
Generated on Sat Oct 15 2022 07:52:33 by
1.7.2