SPKT

Dependencies:   F746_GUI SD_PlayerSkeleton F746_SAI_IO

Committer:
phungductung
Date:
Tue Jun 04 21:37:21 2019 +0000
Revision:
0:8ede47d38d10
SPKT

Who changed what in which revision?

UserRevisionLine numberNew contents of line
phungductung 0:8ede47d38d10 1 /* mbed Microcontroller Library
phungductung 0:8ede47d38d10 2 * Copyright (c) 2006-2013 ARM Limited
phungductung 0:8ede47d38d10 3 *
phungductung 0:8ede47d38d10 4 * Licensed under the Apache License, Version 2.0 (the "License");
phungductung 0:8ede47d38d10 5 * you may not use this file except in compliance with the License.
phungductung 0:8ede47d38d10 6 * You may obtain a copy of the License at
phungductung 0:8ede47d38d10 7 *
phungductung 0:8ede47d38d10 8 * http://www.apache.org/licenses/LICENSE-2.0
phungductung 0:8ede47d38d10 9 *
phungductung 0:8ede47d38d10 10 * Unless required by applicable law or agreed to in writing, software
phungductung 0:8ede47d38d10 11 * distributed under the License is distributed on an "AS IS" BASIS,
phungductung 0:8ede47d38d10 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
phungductung 0:8ede47d38d10 13 * See the License for the specific language governing permissions and
phungductung 0:8ede47d38d10 14 * limitations under the License.
phungductung 0:8ede47d38d10 15 */
phungductung 0:8ede47d38d10 16 #include "RawSerial.h"
phungductung 0:8ede47d38d10 17 #include "wait_api.h"
phungductung 0:8ede47d38d10 18 #include <cstdarg>
phungductung 0:8ede47d38d10 19
phungductung 0:8ede47d38d10 20 #if DEVICE_SERIAL
phungductung 0:8ede47d38d10 21
phungductung 0:8ede47d38d10 22 #define STRING_STACK_LIMIT 120
phungductung 0:8ede47d38d10 23
phungductung 0:8ede47d38d10 24 namespace mbed {
phungductung 0:8ede47d38d10 25
phungductung 0:8ede47d38d10 26 RawSerial::RawSerial(PinName tx, PinName rx) : SerialBase(tx, rx) {
phungductung 0:8ede47d38d10 27 }
phungductung 0:8ede47d38d10 28
phungductung 0:8ede47d38d10 29 int RawSerial::getc() {
phungductung 0:8ede47d38d10 30 return _base_getc();
phungductung 0:8ede47d38d10 31 }
phungductung 0:8ede47d38d10 32
phungductung 0:8ede47d38d10 33 int RawSerial::putc(int c) {
phungductung 0:8ede47d38d10 34 return _base_putc(c);
phungductung 0:8ede47d38d10 35 }
phungductung 0:8ede47d38d10 36
phungductung 0:8ede47d38d10 37 int RawSerial::puts(const char *str) {
phungductung 0:8ede47d38d10 38 while (*str)
phungductung 0:8ede47d38d10 39 putc(*str ++);
phungductung 0:8ede47d38d10 40 return 0;
phungductung 0:8ede47d38d10 41 }
phungductung 0:8ede47d38d10 42
phungductung 0:8ede47d38d10 43 // Experimental support for printf in RawSerial. No Stream inheritance
phungductung 0:8ede47d38d10 44 // means we can't call printf() directly, so we use sprintf() instead.
phungductung 0:8ede47d38d10 45 // We only call malloc() for the sprintf() buffer if the buffer
phungductung 0:8ede47d38d10 46 // length is above a certain threshold, otherwise we use just the stack.
phungductung 0:8ede47d38d10 47 int RawSerial::printf(const char *format, ...) {
phungductung 0:8ede47d38d10 48 std::va_list arg;
phungductung 0:8ede47d38d10 49 va_start(arg, format);
phungductung 0:8ede47d38d10 50 // ARMCC microlib does not properly handle a size of 0.
phungductung 0:8ede47d38d10 51 // As a workaround supply a dummy buffer with a size of 1.
phungductung 0:8ede47d38d10 52 char dummy_buf[1];
phungductung 0:8ede47d38d10 53 int len = vsnprintf(dummy_buf, sizeof(dummy_buf), format, arg);
phungductung 0:8ede47d38d10 54 if (len < STRING_STACK_LIMIT) {
phungductung 0:8ede47d38d10 55 char temp[STRING_STACK_LIMIT];
phungductung 0:8ede47d38d10 56 vsprintf(temp, format, arg);
phungductung 0:8ede47d38d10 57 puts(temp);
phungductung 0:8ede47d38d10 58 } else {
phungductung 0:8ede47d38d10 59 char *temp = new char[len + 1];
phungductung 0:8ede47d38d10 60 vsprintf(temp, format, arg);
phungductung 0:8ede47d38d10 61 puts(temp);
phungductung 0:8ede47d38d10 62 delete[] temp;
phungductung 0:8ede47d38d10 63 }
phungductung 0:8ede47d38d10 64 va_end(arg);
phungductung 0:8ede47d38d10 65 return len;
phungductung 0:8ede47d38d10 66 }
phungductung 0:8ede47d38d10 67
phungductung 0:8ede47d38d10 68 } // namespace mbed
phungductung 0:8ede47d38d10 69
phungductung 0:8ede47d38d10 70 #endif