Getting printf to work

Being spoiled by the fact that printf is supported on many platforms, it took some time to get this working. But it works. I copied a file called syscalls.c and incorporate it into my projects. this file will give an error from EM::Blocks compiler as _eBSS is not found by the linker. Both errors can be found in _sbrk(). I modified it a bit (borrowed from another source) and now it works. This is the code:

[code language=”cpp”]
/*
* newlib_stubs.c
*
* Created on: 2 Nov 2010
* Author: nanoage.co.uk
*/
#include <errno.h>
#include <sys/stat.h>
#include <sys/times.h>
#include <sys/unistd.h>
#include "stm32f10x_usart.h"

#ifndef STDOUT_USART
#define STDOUT_USART 1
#endif

#ifndef STDERR_USART
#define STDERR_USART 1
#endif

#ifndef STDIN_USART
#define STDIN_USART 1
#endif

#undef errno
extern int errno;

/*
environ
A pointer to a list of environment variables and their values.
For a minimal environment, this empty list is adequate:
*/
char *__env[1] = { 0 };
char **environ = __env;

int _write(int file, char *ptr, int len);

void _exit(int status)
{
_write(1, "exit", 4);
while (1) {
;
}
}

int _close(int file)
{
return -1;
}
/*
execve
Transfer control to a new process. Minimal implementation (for a system without processes):
*/
int _execve(char *name, char **argv, char **env)
{
errno = ENOMEM;
return -1;
}
/*
fork
Create a new process. Minimal implementation (for a system without processes):
*/

int _fork()
{
errno = EAGAIN;
return -1;
}
/*
fstat
Status of an open file. For consistency with other minimal implementations in these examples,
all files are regarded as character special devices.
The `sys/stat.h’ header file required is distributed in the `include’ subdirectory for this C library.
*/
int _fstat(int file, struct stat *st)
{
st->st_mode = S_IFCHR;
return 0;
}

/*
getpid
Process-ID; this is sometimes used to generate strings unlikely to conflict with other processes. Minimal implementation, for a system without processes:
*/

int _getpid()
{
return 1;
}

/*
isatty
Query whether output stream is a terminal. For consistency with the other minimal implementations,
*/
int _isatty(int file)
{
switch (file) {
case STDOUT_FILENO:
case STDERR_FILENO:
case STDIN_FILENO:
return 1;
default:
//errno = ENOTTY;
errno = EBADF;
return 0;
}
}

/*
kill
Send a signal. Minimal implementation:
*/
int _kill(int pid, int sig)
{
errno = EINVAL;
return (-1);
}

/*
link
Establish a new name for an existing file. Minimal implementation:
*/

int _link(char *old, char *new)
{
errno = EMLINK;
return -1;
}

/*
lseek
Set position in a file. Minimal implementation:
*/
int _lseek(int file, int ptr, int dir)
{
return 0;
}

/*
sbrk
Increase program data space.
Malloc and related functions depend on this
*/
caddr_t _sbrk(int incr)
{
extern char end asm("end"); // Defined by the linker
static char *heap_end;
char *prev_heap_end;

if (heap_end == 0) {
heap_end = &end;
}
prev_heap_end = heap_end;

char * stack = (char*) __get_MSP();
if (heap_end + incr > stack) {
_write (STDERR_FILENO, "Heap and stack collision\n", 25);
errno = ENOMEM;
return (caddr_t) -1;
//abort ();
}

heap_end += incr;
return (caddr_t) prev_heap_end;

}

/*
read
Read a character to a file. `libc’ subroutines will use this system routine for input from all files, including stdin
Returns -1 on error or blocks until the number of characters have been read.
*/

int _read(int file, char *ptr, int len)
{
int n;
int num = 0;
switch (file) {
case STDIN_FILENO:
for (n = 0; n < len; n++) {
#if STDIN_USART == 1
while ((USART1->SR & USART_FLAG_RXNE) == (uint16_t)RESET) {}
char c = (char)(USART1->DR & (uint16_t)0x01FF);
#elif STDIN_USART == 2
while ((USART2->SR & USART_FLAG_RXNE) == (uint16_t) RESET) {}
char c = (char) (USART2->DR & (uint16_t) 0x01FF);
#elif STDIN_USART == 3
while ((USART3->SR & USART_FLAG_RXNE) == (uint16_t)RESET) {}
char c = (char)(USART3->DR & (uint16_t)0x01FF);
#endif
*ptr++ = c;
num++;
}
break;
default:
errno = EBADF;
return -1;
}
return num;
}

/*
stat
Status of a file (by name). Minimal implementation:
int _EXFUN(stat,( const char *__path, struct stat *__sbuf ));
*/

int _stat(const char *filepath, struct stat *st)
{
st->st_mode = S_IFCHR;
return 0;
}

/*
times
Timing information for current process. Minimal implementation:
*/

clock_t _times(struct tms *buf)
{
return -1;
}

/*
unlink
Remove a file’s directory entry. Minimal implementation:
*/
int _unlink(char *name)
{
errno = ENOENT;
return -1;
}

/*
wait
Wait for a child process. Minimal implementation:
*/
int _wait(int *status)
{
errno = ECHILD;
return -1;
}

/*
write
Write a character to a file. `libc’ subroutines will use this system routine for output to all files, including stdout
Returns -1 on error or number of bytes sent
*/
int _write(int file, char *ptr, int len)
{
int n;
switch (file) {
case STDOUT_FILENO: /*stdout*/
for (n = 0; n < len; n++) {
#if STDOUT_USART == 1
while ((USART1->SR & USART_FLAG_TC) == (uint16_t)RESET) {}
USART1->DR = (*ptr++ & (uint16_t)0x01FF);
#elif STDOUT_USART == 2
while ((USART2->SR & USART_FLAG_TC) == (uint16_t) RESET) {
}
USART2->DR = (*ptr++ & (uint16_t) 0x01FF);
#elif STDOUT_USART == 3
while ((USART3->SR & USART_FLAG_TC) == (uint16_t)RESET) {}
USART3->DR = (*ptr++ & (uint16_t)0x01FF);
#endif
}
break;
case STDERR_FILENO: /* stderr */
for (n = 0; n < len; n++) {
#if STDERR_USART == 1
while ((USART1->SR & USART_FLAG_TC) == (uint16_t)RESET) {}
USART1->DR = (*ptr++ & (uint16_t)0x01FF);
#elif STDERR_USART == 2
while ((USART2->SR & USART_FLAG_TC) == (uint16_t) RESET) {
}
USART2->DR = (*ptr++ & (uint16_t) 0x01FF);
#elif STDERR_USART == 3
while ((USART3->SR & USART_FLAG_TC) == (uint16_t)RESET) {}
USART3->DR = (*ptr++ & (uint16_t)0x01FF);
#endif
}
break;
default:
errno = EBADF;
return -1;
}
return len;
}

/**
* @brief initialize usart1
* @name usart1_init
* initializes the UART1 port
*/
void usart1_init(){
GPIO_InitTypeDef GPIO_InitStructure; // create a GPIO init structure
USART_InitTypeDef USART_InitStructure; // create a USART init structure
USART_ClockInitTypeDef USART_ClockInitStructure; // create a CLOCK init structure
//
// since we are connecting an on-chip peripheral (USART) to the IO pin, we must
// configure it to enable alternate IO functions (AFIO). But we must enable the clock first
// thus to enable USART1 we must:
// – enable the peripheral
// – enable GPIOA as our pins are connected to GPIOA
// – enable alternate IO functions to connect USART1 to GPIOA
//
RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1 | RCC_APB2Periph_GPIOA | RCC_APB2Periph_AFIO, ENABLE);
//
//Configure USART1 Tx (PA.09) as alternate function push-pull
//
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStructure);
//
//Configure USART1 Rx (PA.10) as input floating
//
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
GPIO_Init(GPIOA, &GPIO_InitStructure);
//
// initialize USART Clock
//
USART_ClockStructInit(&USART_ClockInitStructure);
USART_ClockInit(USART1, &USART_ClockInitStructure);
//
// set defaults in USART init structure
//
USART_StructInit(&USART_InitStructure);
//
// Configure USART1 basic and asynchronous parameters
//
USART_InitStructure.USART_BaudRate=921600; // just change the baud rate in this case
//
// initialize the USART
//
USART_Init(USART1, &USART_InitStructure);
//
//Enable USART1
//
USART_Cmd(USART1, ENABLE);
}
/** @brief Delay function
* @name Delay(volatile uint32_t ncCount)
* @param nCount delay number of counts. Very unclear what actually
* @return none
*
*/
void Delay(volatile uint32_t nCount)
{
for (; nCount != 0; nCount–);
}

[/code]

I added 2 extra functions for my purpose and experimenting. Just put the code in a file and add the file (.c) to the project. Now printf will work outputting stdin, stdout and stderr to the serial monitor or terminal program. Now we are not there yet. floating point is usually omitted from a standard binary. A simple parameter in the linker will solve this:

  • go to project build options
  • select either Release / Debug
  • Select linker settings tab
  • select other options
  • add -u _printf_float
  • clock OK etc… and done

 

Geef een reactie