资源简介
OLED屏的使用帮助及基于c51 k60 x128的参考程序
代码片段和文件信息
/*
* File: alloc.c
* Purpose: generic malloc() and free() engine
*
* Notes: 99% of this code stolen/borrowed from the K&R C
* examples.
*
*/
#include “common.h“
#include “stdlib.h“
#pragma section = “HEAP“
/********************************************************************/
/*
* This struct forms the minimum block size which is allocated and
* also forms the linked list for the memory space used with alloc()
* and free(). It is padded so that on a 32-bit machine all malloc‘ed
* pointers are 16-byte aligned.
*/
typedef struct ALLOC_HDR
{
struct
{
struct ALLOC_HDR *ptr;
unsigned int size;
} s;
unsigned int align;
unsigned int pad;
} ALLOC_HDR;
static ALLOC_HDR base;
static ALLOC_HDR *freep = NULL;
/********************************************************************/
void
free (void *ap)
{
ALLOC_HDR *bp *p;
bp = (ALLOC_HDR *)ap - 1; /* point to block header */
for (p = freep; !((bp > p) && (bp < p->s.ptr)) ; p = p->s.ptr)
{
if ((p >= p->s.ptr) && ((bp > p) || (bp < p->s.ptr)))
{
break; /* freed block at start or end of arena */
}
}
if ((bp + bp->s.size) == p->s.ptr)
{
bp->s.size += p->s.ptr->s.size;
bp->s.ptr = p->s.ptr->s.ptr;
}
else
{
bp->s.ptr = p->s.ptr;
}
if ((p + p->s.size) == bp)
{
p->s.size += bp->s.size;
p->s.ptr = bp->s.ptr;
}
else
{
p->s.ptr = bp;
}
freep = p;
}
/********************************************************************/
void *
malloc (unsigned nbytes)
{
/* Get addresses for the HEAP start and end */
#if (defined(CW))
extern char __HEAP_START;
extern char __HEAP_END[];
#elif (defined(IAR))
char* __HEAP_START = __section_begin(“HEAP“);
char* __HEAP_END = __section_end(“HEAP“);
#endif
ALLOC_HDR *p *prevp;
unsigned nunits;
nunits = ((nbytes+sizeof(ALLOC_HDR)-1) / sizeof(ALLOC_HDR)) + 1;
if ((prevp = freep) == NULL)
{
p = (ALLOC_HDR *)__HEAP_START;
p->s.size = ( ((uint32)__HEAP_END - (uint32)__HEAP_START)
/ sizeof(ALLOC_HDR) );
p->s.ptr = &base;
base.s.ptr = p;
base.s.size = 0;
prevp = freep = &base;
}
for (p = prevp->s.ptr; ; prevp = p p = p->s.ptr)
{
if (p->s.size >= nunits)
{
if (p->s.size == nunits)
{
prevp->s.ptr = p->s.ptr;
}
else
{
p->s.size -= nunits;
p += p->s.size;
p->s.size = nunits;
}
freep = prevp;
return (void *)(p + 1);
}
if (p == freep)
return NULL;
}
}
/*******************************************
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2014-02-26 20:11 原文件\
目录 0 2014-02-26 20:10 原文件\OLED-K60\
文件 28370 2014-02-26 20:10 原文件\OLED-K60\DEMOK_Kinetis_GPIO_Example.dep
文件 52169 2013-01-13 23:29 原文件\OLED-K60\DEMOK_Kinetis_GPIO_Example.ewd
文件 52981 2013-01-09 19:03 原文件\OLED-K60\DEMOK_Kinetis_GPIO_Example.ewp
文件 180 2012-11-07 15:35 原文件\OLED-K60\DEMOK_Kinetis_GPIO_Example.eww
目录 0 2013-01-24 21:51 原文件\OLED-K60\Debug\
目录 0 2014-02-26 20:10 原文件\OLED-K60\Debug\Exe\
文件 23095 2014-02-26 20:10 原文件\OLED-K60\Debug\Exe\DEMOK_Kinetis_GPIO_Example.hex
文件 184984 2014-02-26 20:10 原文件\OLED-K60\Debug\Exe\DEMOK_Kinetis_GPIO_Example.out
目录 0 2014-02-26 20:33 原文件\OLED-K60\Debug\List\
目录 0 2014-02-26 20:10 原文件\OLED-K60\Debug\Obj\
文件 1763 2014-02-26 20:10 原文件\OLED-K60\Debug\Obj\DEMOK_Kinetis_GPIO_Example.pbd
文件 22900 2013-01-13 23:14 原文件\OLED-K60\Debug\Obj\FTM.o
文件 70692 2013-01-13 23:19 原文件\OLED-K60\Debug\Obj\LQ12864.o
文件 10000 2013-01-13 23:14 原文件\OLED-K60\Debug\Obj\PIT.o
文件 27632 2013-01-13 23:14 原文件\OLED-K60\Debug\Obj\adc.o
文件 12072 2013-01-13 23:14 原文件\OLED-K60\Debug\Obj\alloc.o
文件 17536 2013-01-13 23:14 原文件\OLED-K60\Debug\Obj\arm_cm4.o
文件 8680 2013-01-13 23:14 原文件\OLED-K60\Debug\Obj\assert.o
文件 1920 2012-11-10 22:21 原文件\OLED-K60\Debug\Obj\crt0.o
文件 9580 2013-01-13 23:14 原文件\OLED-K60\Debug\Obj\delay.o
文件 8712 2013-01-13 23:14 原文件\OLED-K60\Debug\Obj\exti.o
文件 18628 2013-01-13 23:14 原文件\OLED-K60\Debug\Obj\gpio.o
文件 10664 2013-01-13 23:14 原文件\OLED-K60\Debug\Obj\io.o
文件 3908 2013-01-09 19:02 原文件\OLED-K60\Debug\Obj\isr.o
文件 7672 2013-01-13 23:14 原文件\OLED-K60\Debug\Obj\lptmr.o
文件 8720 2014-02-26 20:10 原文件\OLED-K60\Debug\Obj\main.o
文件 14104 2013-01-13 23:14 原文件\OLED-K60\Debug\Obj\mcg.o
文件 11520 2013-01-09 19:02 原文件\OLED-K60\Debug\Obj\memtest.o
文件 26304 2013-01-13 23:14 原文件\OLED-K60\Debug\Obj\printf.o
............此处省略977个文件信息
- 上一篇:VC五子棋源代码 想要的速度下哦 多线程
- 下一篇:NIITsm3在线考试切图有答案
相关资源
- k60409.pdf
- 80C51F040使用手册--中文
- 89C51电子血压计毕业设计论文
- 基于AT89C51单片机的水塔智能水位控制
- 飞思卡尔第十届智能车比赛摄像头组
- 野火山外K60参考代码V5.2支持FX和DNZ
- 用DS12C887实现的高精度时钟文档及代码
- 80c51最小系统版protel原理图
- k60的键盘 小灯 液晶 例程
- 数码管与DS18B20设计的温度报警器
- 飞思卡尔MC9S12X128单片机的认识与实践
- KEILc51v900及注册机part3
- 基于51单片机串口温湿度采集和传输仿
- 80C51proteus仿真.rar
- 单片机原理与C51程序设计基础教程 张
- 飞思卡尔智能车程序
- HOT51 开发板配套资料
- 普中科技51单片机开发板的实验程序资
- 嵌入式软件设计入门与进阶-基于Kin
- LED点阵广告牌课程设计C51单片机含报
- K60_DMP_3_PID输出
- AT89C51单片机程序以及原理图
- 51单片机初级实验篇
- 电子时钟/万年历设计报告 基于AT89c
- STC15F2K60S2-AD资料
- OLED驱动库、例程、取字软件与资料
- 基于AT89C51单片机的水位检测计的设计
- Altium designer 集成库 stc89c51 SG3525 数码
- K60 OLED显示程序
- 51单片机100个例程加仿真图
评论
共有 条评论