Quality RTOS & Embedded Software

 Real time embedded FreeRTOS RSS feed 
Quick Start Supported MCUs PDF Books Trace Tools Ecosystem


Loading

Why does xSerialGetChar() in demo use 'signed char' type?

Posted by dbuntin on August 30, 2015

I've extended the serial.c and serial.h files from the demo application to facilitate writing strings and debug information to the serial console in my application. I'm using snprintf() and similar library functions defined in stdio.h. These functions use parameters of type " char * ". When passing strings created by these functions to xSerialPutChar() and xSerialPutString() a must cast to a " signed char * " to avoid compiler warnings. Before I make any changes, I'd like to fully understand the types used and the reasons behind them.

Why does xSerialPutChar() use a signed char in it's prototype?

signed portBASETYPE xSerialPutChar( xComPortHandle pxPort, signed char cOutChar, TickTypet xBlockTime );

I'm also not sure I understand the full meaning of the parameter type "const signed char * const pcString" used in xSerialPutString. Could someone help me interpret this type and the use of const twice?

void vSerialPutString( xComPortHandle pxPort, **const signed char * const **pcString, unsigned short usStringLength );

Background: I've created my application based on the AVRATMege323WinAVR demo applicaiton. I'm using AVR Studio and it's native GCC complier.

Thanks, David


Why does xSerialGetChar() in demo use 'signed char' type?

Posted by rtel on August 30, 2015

You are looking at quite an old file. For portability, the original coding standard did not allow unqualified char types (without the signed or unsigned qualifier) because some compilers default char types to signed and some to unsigned. That has since been relaxed to allow unqualified char types if the char is an ascii character or pointing to a string of ascii characters.

I'm also not sure I understand the full meaning of the parameter type "const signed char * const pcString"

That is a C question, easy to look up in any C reference book or on the web - we like to keep questions on the forum specific to FreeRTOS as it is more valuable to FreeRTOS users that way - there are plenty of general embedded programming forums [the answer in this case is that the type is a const pointer to a const string - neither the pointer, nor the string in points to, can be modified.]


Why does xSerialGetChar() in demo use 'signed char' type?

Posted by dbuntin on August 30, 2015

Thanks.

On the C question, I'll be more resourceful in the future.

David B.


[ Back to the top ]    [ About FreeRTOS ]    [ Privacy ]    [ Sitemap ]    [ ]


Copyright (C) Amazon Web Services, Inc. or its affiliates. All rights reserved.

Latest News

NXP tweet showing LPC5500 (ARMv8-M Cortex-M33) running FreeRTOS.

Meet Richard Barry and learn about running FreeRTOS on RISC-V at FOSDEM 2019

Version 10.1.1 of the FreeRTOS kernel is available for immediate download. MIT licensed.

View a recording of the "OTA Update Security and Reliability" webinar, presented by TI and AWS.


Careers

FreeRTOS and other embedded software careers at AWS.



FreeRTOS Partners

ARM Connected RTOS partner for all ARM microcontroller cores

Espressif ESP32

IAR Partner

Microchip Premier RTOS Partner

RTOS partner of NXP for all NXP ARM microcontrollers

Renesas

STMicro RTOS partner supporting ARM7, ARM Cortex-M3, ARM Cortex-M4 and ARM Cortex-M0

Texas Instruments MCU Developer Network RTOS partner for ARM and MSP430 microcontrollers

OpenRTOS and SafeRTOS

Xilinx Microblaze and Zynq partner