nodemcu-firmware/components/platform/rmt.c

59 lines
1.1 KiB
C

#include "platform.h"
#include <string.h>
#include "driver/rmt.h"
static uint8_t rmt_channel_alloc[RMT_CHANNEL_MAX];
static bool rmt_channel_check( uint8_t channel, uint8_t num_mem )
{
if (num_mem == 0 || channel >= RMT_CHANNEL_MAX) {
// wrong parameter
return false;
} else if (num_mem == 1) {
if (rmt_channel_alloc[channel] == 0)
return true;
else
return false;
}
return rmt_channel_check( channel-1, num_mem-1);
}
int platform_rmt_allocate( uint8_t num_mem )
{
int channel;
uint8_t tag = 1;
for (channel = RMT_CHANNEL_MAX-1; channel >= 0; channel--) {
if (rmt_channel_alloc[channel] == 0) {
if (rmt_channel_check( channel, num_mem )) {
rmt_channel_alloc[channel] = tag++;
if (--num_mem == 0)
break;
}
}
}
if (channel >= 0 && num_mem == 0)
return channel;
else
return -1;
}
void platform_rmt_release( uint8_t channel )
{
for ( ; channel < RMT_CHANNEL_MAX; channel++ ) {
uint8_t tag = rmt_channel_alloc[channel];
rmt_channel_alloc[channel] = 0;
if (tag <= 1)
break;
}
}