STM32F107VC/Implementing Standard low-level C-functions

From Teknologisk videncenter
< STM32F107VC
Revision as of 07:41, 25 September 2011 by Heth (talk | contribs) (Created page with "To use standard C-functions as printf(), fprintf(), scanf() and fscanf() in Category:C or the std::out object in Category:C++ Target dependent Low-Lev...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

To use standard C-functions as printf(), fprintf(), scanf() and fscanf() in or the std::out object in Target dependent Low-Level functins must be implemented.

  • __FILE, the file structure.
  • __stdin, the standard input object of type __FILE.
  • __stdout, the standard output object of type __FILE.
  • fputc(), outputs a character to a file.
  • ferror(), returns the error status accumulated during file I/O.
  • fgetc(), gets a character from a file.
  • fgetwc()
  • fputwc()
  • __backspace(), moves the file pointer to the previous character.
  • __backspacewc().

Links