2013-05-14 07:16:57 +00:00
|
|
|
/* Copyright 2012,2013 Jun Wako <wakojun@gmail.com> */
|
2010-08-10 04:34:06 +00:00
|
|
|
/* Very basic print functions, intended to be used with usb_debug_only.c
|
|
|
|
* http://www.pjrc.com/teensy/
|
|
|
|
* Copyright (c) 2008 PJRC.COM, LLC
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2014-12-12 05:05:05 +00:00
|
|
|
#include <stdint.h>
|
2010-08-10 04:34:06 +00:00
|
|
|
#include "print.h"
|
2012-10-24 18:28:25 +00:00
|
|
|
|
|
|
|
|
2013-03-19 05:08:40 +00:00
|
|
|
#ifndef NO_PRINT
|
2010-08-10 04:34:06 +00:00
|
|
|
|
2014-12-12 05:05:05 +00:00
|
|
|
#if defined(__AVR__)
|
|
|
|
|
2013-05-14 07:16:57 +00:00
|
|
|
#define sendchar(c) xputc(c)
|
2010-10-23 18:27:43 +00:00
|
|
|
|
|
|
|
|
2013-03-19 05:08:40 +00:00
|
|
|
void print_set_sendchar(int8_t (*sendchar_func)(uint8_t))
|
|
|
|
{
|
2013-05-14 07:16:57 +00:00
|
|
|
xdev_out(sendchar_func);
|
2013-03-19 05:08:40 +00:00
|
|
|
}
|
2012-10-24 18:28:25 +00:00
|
|
|
|
2014-12-12 05:05:05 +00:00
|
|
|
#elif defined(__arm__)
|
|
|
|
|
|
|
|
// TODO
|
|
|
|
//void print_set_sendchar(int8_t (*sendchar_func)(uint8_t)) { }
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2013-03-19 05:08:40 +00:00
|
|
|
#endif
|