This is file "main.c". For demonstration purpose only.
//==============================================================================
// This file is part of "Heap Management For Small Microcontrollers".
// v1.05 (2009-06-29)
// isaacbavaresco@yahoo.com.br
//==============================================================================
/*
Copyright (c) 2007-2009, Isaac Marino Bavaresco
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Neither the name of the author nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
//==============================================================================
/*
This file is just an example of how to use "Heap Management For Small
Microcontrollers".
*/
//==============================================================================
#include <alloc.h>
//==============================================================================
char RAM *v[64];
void main( void )
{
char i;
char RAM *p, *q, *r;
heapinit();
while( 1 )
{
for( i = 0; i < sizeof v / sizeof v[0]; i++ )
v[i] = malloc( 20 );
p = malloc( 93 );
q = malloc( 93 );
r = malloc( 1 );
for( i = 0; i < sizeof v / sizeof v[0]; i += 2 )
free( v[i] );
for( i = 1; i < sizeof v / sizeof v[0]; i += 2 )
free( v[i] );
free( q );
free( p );
free( r );
}
}
//==============================================================================
void vTaskSuspendAll( void )
{
}
//==============================================================================
signed char xTaskResumeAll( void )
{
return 0;
}
//==============================================================================
See also:
| file: /Techref/member/IMB-yahoo-J86/main.c.htm, 3KB, , updated: 2010/4/14 13:57, local time: 2012/2/9 19:48,
owner: IMB-yahoo-J86,
38.107.179.233:LOG IN |
| ©2012 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://www.piclist.com/techref/member/IMB-yahoo-J86/main.c.htm"> Heap Management For Small Microcontrollers - main.c</A> |
| Did you find what you needed? |
|
Calculator 7-seg LED chars, port values, resistor color codes and common values, ohms law, wavelength / frequency, RMS and Peak, max value for x bits, etc... |
Robotics nuts!Check out http://users.frii.com/dlc/robotics/projects/botproj.htm from Dennis Clark. This guy ROCKS! He has made (and sells but also releases code, docs, etc...) for a number of cool little robotic modules including whiskers, IR proximity detect and remote control, Sonar proximity detect, PWM, Servo, compass. Most of these use the little PIC 12C508 controller which costs basically nothing and is soooo tiny.The 4 servos, 2400 baud serial servo controller is a wonder of magic and he sells the programmed chip for $8. Wow! |
.