581bdc3e23
git-svn-id: file:///srv/dev-disk-by-uuid-17e88007-4d0c-45e0-8757-cacfcc458630/repositories/svn/Diplomarbeit@106 9fe90eed-be63-e94b-8204-d34ff4c2ff93
89 lines
1.9 KiB
C
89 lines
1.9 KiB
C
#include <stdio.h>
|
|
#include "BpPort.h"
|
|
#include "mem_mod.h"
|
|
|
|
|
|
extern void serWrite (
|
|
int device,
|
|
short length, /**< Lengh of data in bytes */
|
|
char * data /**< Pointer to data */
|
|
);
|
|
|
|
void Memmod_Init(memman *me,unsigned char buf_count,unsigned short buf_size)
|
|
{
|
|
unsigned char *buffer;
|
|
unsigned short i;
|
|
me->count = buf_count;
|
|
me->size = buf_size;
|
|
buffer = pvPortMalloc(buf_count*buf_size);
|
|
me->buffer = buffer;
|
|
me->free_index = buf_count;
|
|
me->freelist = pvPortMalloc(buf_count*sizeof(link_item));
|
|
for(i=0;i<buf_count;i++)
|
|
{
|
|
me->freelist[i].data = buffer;
|
|
buffer = buffer+buf_size;
|
|
}
|
|
|
|
pthread_mutex_init(&(me->mutex), NULL);
|
|
}
|
|
|
|
unsigned char* Memmod_GetBuffer(memman *me)
|
|
{
|
|
return me->buffer;
|
|
}
|
|
|
|
memman *Memmod_Create(unsigned char buf_count,unsigned short buf_size)
|
|
{
|
|
memman *new_item;
|
|
new_item = (memman *)pvPortMalloc(sizeof(memman));
|
|
Memmod_Init(new_item,buf_count,buf_size);
|
|
return new_item;
|
|
}
|
|
|
|
void *Memmod_Alloc(memman *me)
|
|
{
|
|
unsigned char index;
|
|
void *retval;
|
|
|
|
pthread_mutex_lock(&(me->mutex));
|
|
{
|
|
index = me->free_index;
|
|
if(index > 0)
|
|
{
|
|
index--;
|
|
me->free_index=index;
|
|
retval = me->freelist[index].data;
|
|
}
|
|
else
|
|
{
|
|
retval = 0;
|
|
}
|
|
}
|
|
pthread_mutex_unlock(&(me->mutex));
|
|
|
|
if (retval == 0)
|
|
{
|
|
printf("mem_mod.c> no buffer available\n"); fflush(stdout);
|
|
}
|
|
|
|
return retval;
|
|
}
|
|
|
|
void Memmod_Free(memman *me,void *buffer)
|
|
{
|
|
unsigned char index;
|
|
|
|
pthread_mutex_lock(&(me->mutex));
|
|
{
|
|
index = me->free_index;
|
|
if(index < me->count)
|
|
{
|
|
me->freelist[index].data = buffer;
|
|
index++;
|
|
me->free_index=index;
|
|
}
|
|
}
|
|
pthread_mutex_unlock(&(me->mutex));
|
|
}
|