We strongly encourage users to use Package manager for sharing their code on Libstock website, because it boosts your efficiency and leaves the end user with no room for error. [more info]
Rating:
Author: Richard Lowe
Last Updated: 2013-09-16
Package Version: 1.0.0.1
Category: Other Codes
Downloaded: 2938 times
Followed by: 1 user
License: MIT license
Adds printf and sprintf functionality to MikroC. Uses about 1.5k.
Do you want to subscribe in order to receive notifications regarding "Printf Support AVR / ARM" changes.
Do you want to unsubscribe in order to stop receiving notifications regarding "Printf Support AVR / ARM" changes.
Do you want to report abuse regarding "Printf Support AVR / ARM".
DOWNLOAD LINK | RELATED COMPILER | CONTAINS |
---|---|---|
1379352277_printf_support_a_mikroc_avr.mpkg [20.90KB] | mikroC PRO for AVR |
|
1379352330_printf_support_a_mikroc_arm.mpkg [26.10KB] | mikroC PRO for ARM |
|
Adaptation of light weight printf. Works very very well for debugging. Does not, however, have a buffer associated with it for space. So printing huge strings does not work well.
Requirements:
Provide a put_char function such as:
void put_char( char c )
{
UART1_Write( c );
}
Then initialize the printf:
printf_init( put_char );