Skip to content

ESP32 PICO Isobus++ VT Library to Component Adaptation #229

Answered by thiagozf1
thiagozf1 asked this question in Q&A
Discussion options

You must be logged in to vote

Hi guys, I made it work a while ago. Now that I understand a bit more of the code, I'll leave here my experience with your library :)
My objective here was to create a task capable of sending objectpools and dealing with the TCs. So basically my main.c runs this function to start up the task:

void IsobusPP_vInit(void)
    {
	InitializeEnumCases();
        if(xTaskCreate(taskIsobusPP, "IsobusPP", 5000, NULL, TASK_ISOBUS_PP_PRIORITY, NULL) != pdTRUE)
        {
            ESP_LOGE(TAG, "Failed to create IsobusPP task!");
        }
    }

The function taskIsobusPP is declared as static void taskIsobusPP(void* pvParameters), and it is basically the same main function of the examples, with only…

Replies: 3 comments 7 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
7 replies
@thiagozf1
Comment options

@GwnDaan
Comment options

@thiagozf1
Comment options

@thiagozf1
Comment options

@ad3154
Comment options

Comment options

You must be logged in to vote
0 replies
Answer selected by thiagozf1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants