Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Task 2 Submission - Vishal Prakash #298

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions projects/task1/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!--
General guidelines
These are just guidelines, not strict rules - document however seems best.
A README for a firmware-only project (e.g. Babydriver, MPXE, bootloader, CAN explorer) should answer the following questions:
- What is it?
- What problem does it solve?
- How do I use it? (with usage examples / example commands, etc)
- How does it work? (architectural overview)
A README for a board project (powering a hardware board, e.g. power distribution, centre console, charger, BMS carrier) should answer the following questions:
- What is the purpose of the board?
- What are all the things that the firmware needs to do?
- How does it fit into the overall system?
- How does it work? (architectural overview, e.g. what each module's purpose is or how data flows through the firmware)
-->
# task1
6 changes: 6 additions & 0 deletions projects/task1/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"libs": [
"FreeRTOS",
"ms-common"
]
}
50 changes: 50 additions & 0 deletions projects/task1/src/tasks/tasks.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
#include <stdbool.h>
#include <stdint.h>

#include "FreeRTOS.h"
#include "delay.h"
#include "gpio.h"
#include "log.h"
#include "misc.h"
#include "tasks.h"

// Non blocking delay. Simply consumes cpu cycles until a given time has passed
static void prv_delay(const TickType_t delay_ms) {
TickType_t curr_tick = xTaskGetTickCount();
while (xTaskGetTickCount() - curr_tick < pdMS_TO_TICKS(delay_ms)) {
}
}

TASK(task1, TASK_STACK_512) {
int counter1 = 0;
while (true) {
// Your code here
LOG_DEBUG("Task 1: %d\n", counter1);
counter1++;
prv_delay(1000);
}
}

TASK(task2, TASK_STACK_512) {
int counter2 = 0;
while (true) {
// Your code here
LOG_DEBUG("Task 2: %d\n", counter2);
counter2++;
prv_delay(1000);
}
}

int main(void) {
log_init();
tasks_init();
// Create tasks here
tasks_init_task(task1, TASK_PRIORITY(1), NULL);
tasks_init_task(task2, TASK_PRIORITY(1), NULL);

LOG_DEBUG("Program start...\n");
// Start the scheduler
tasks_start();

return 0;
}
69 changes: 69 additions & 0 deletions projects/task2/src/queues.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
#include "queues.h"

#include <stdbool.h>
#include <stdint.h>

#include "FreeRTOS.h"
#include "delay.h"
#include "log.h"
#include "misc.h"
#include "status.h"
#include "tasks.h"

#define ITEM_SZ 6
#define QUEUE_LEN 5
#define BUF_SIZE (QUEUE_LEN * ITEM_SZ)

static const char s_list[QUEUE_LEN][ITEM_SZ] = { "Item1", "Item2", "Item3", "Item4", "Item5" };

// Task static entities
static uint8_t s_queue1_buf[BUF_SIZE];
static Queue s_queue1 = {
// Add parameters
.num_items = QUEUE_LEN,
.item_size = ITEM_SZ,
.storage_buf = s_queue1_buf,
};

TASK(task1, TASK_STACK_512) {
LOG_DEBUG("Task 1 initialized!\n");
StatusCode ret;
const char *current_string;
while (true) {
// Your code goes here
for (int i = 0; i < QUEUE_LEN; i++) {
current_string = s_list[i];
queue_send(&s_queue1, current_string, 1000);
delay_ms(50);
}
}
}

TASK(task2, TASK_STACK_512) {
LOG_DEBUG("Task 2 initialized!\n");
const char outstr[ITEM_SZ];
StatusCode ret;
while (true) {
// Your code goes here
for (int i = 0; i < QUEUE_LEN; i++) {
queue_receive(&s_queue1, outstr, 1000);
delay_ms(100);
LOG_DEBUG("%s", outstr);
}
}
}

int main(void) {
log_init();
tasks_init();
// Initialize queues here
queue_init(&s_queue1);

tasks_init_task(task1, TASK_PRIORITY(2), NULL);
tasks_init_task(task2, TASK_PRIORITY(2), NULL);

LOG_DEBUG("Program start...\n");
tasks_start();

return 0;
}
Loading