yotaro morizumi / Mbed 2 deprecated zoomy_customLibrary

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers portSet.hpp Source File

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;