Pehr Hovey / Mbed 2 deprecated mbed_osc

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers mbed_system_osc.h Source File

mbed_system_osc.h

00001 /*
00002  * Pehr Hovey
00003  *
00004  * mBed OSC - SystemOsc subsystem
00005  * Get/set info about the system like ip address, hostname
00006  * Based on code from Make Controller
00007  */
00008  /*********************************************************************************
00009 
00010  Copyright 2006-2009 MakingThings
00011 
00012  Licensed under the Apache License,
00013  Version 2.0 (the "License"); you may not use this file except in compliance
00014  with the License. You may obtain a copy of the License at
00015 
00016  http://www.apache.org/licenses/LICENSE-2.0
00017 
00018  Unless required by applicable law or agreed to in writing, software distributed
00019  under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
00020  CONDITIONS OF ANY KIND, either express or implied. See the License for
00021  the specific language governing permissions and limitations under the License.
00022 
00023 *********************************************************************************/
00024 #ifndef MBED_SYS_OSC_
00025 #define MBED_SYS_OSC_
00026 //OSC Subsystems
00027 
00028 int SystemOsc_ReceiveMessage( int channel, char* message, int length );
00029 const char* SystemOsc_GetName( void );
00030 int SystemOsc_PropertySet( int property, char* typedata, int channel );
00031 int SystemOsc_ReceiveMessage( int channel, char* message, int length );
00032 int SystemOsc_PropertyGet( int property, int channel );
00033 
00034 #endif