I have not found any examples to understand better.
Code: Select all
#include "mdf_common.h"
#include "mwifi.h"
#include <freertos/FreeRTOS.h>
#include <freertos/task.h>
#include <stdio.h>
#include <led_strip.h>
#include <noise.h>
#include "driver/gpio.h"
#include <driver/adc.h>
#include "esp_adc_cal.h"
uint8_t pData[];
uint8_t num_points = 8;
uint8_t octaves = 5;
uint16_t x = 0.5;
int scale = 3;
uint16_t time = 2;
void app_main(void)
{
while(1){
fill_raw_noise8(uint8_t *pData,num_points,octaves, x, scale, time);
vTaskDelay(100 / portTICK_RATE_MS);
}
}
Any help will be appreciated.