source: rtos_arduino/trunk/arduino_lib/libraries/Temboo/src/utility/TembooGlobal.h@ 136

Last change on this file since 136 was 136, checked in by ertl-honda, 8 years ago

ライブラリとOS及びベーシックなサンプルの追加.

File size: 1.3 KB
Line 
1/*
2###############################################################################
3#
4# Temboo Arduino library
5#
6# Copyright 2014, Temboo Inc.
7#
8# Licensed under the Apache License, Version 2.0 (the "License");
9# you may not use this file except in compliance with the License.
10# You may obtain a copy of the License at
11#
12# http://www.apache.org/licenses/LICENSE-2.0
13#
14# Unless required by applicable law or agreed to in writing,
15# software distributed under the License is distributed on an
16# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
17# either express or implied. See the License for the specific
18# language governing permissions and limitations under the License.
19#
20###############################################################################
21*/
22
23#ifndef TEMBOOGLOBAL_H_
24#define TEMBOOGLOBAL_H_
25
26#include <Arduino.h>
27
28//#define TEMBOO_VERBOSE
29
30#ifdef TEMBOO_VERBOSE
31 #define TEMBOO_TRACE(x) Serial.print(x)
32 #define TEMBOO_TRACE_BYTES(x,c) Serial.write((const uint8_t*)x,c)
33 #define TEMBOO_TRACELN(x) Serial.println(x)
34#else
35 #define TEMBOO_TRACE(x)
36 #define TEMBOO_TRACE_BYTES(x,c)
37 #define TEMBOO_TRACELN(x)
38#endif
39
40#ifdef __cplusplus
41extern "C" {
42#endif
43
44char* uint16toa(uint16_t value, char* dest);
45char* uint32toa(uint32_t value, char* dest);
46
47#ifdef __cplusplus
48}
49#endif
50
51
52#endif
53
Note: See TracBrowser for help on using the repository browser.