Already have an account? Get multiple benefits of using own account!
Login in your account..!
Remember me
Don't have an account? Create your account in less than a minutes,
Forgot password? how can I recover my password now!
Enter right registered email to receive password!
Implement the "Nuclear Reactor" example using the following: An ISR triggered by a button press A task to update the temperatures A semaphore to communicate between the ISR and the update task The update task should use dynamic memory allocation to get a buffer in which to place the temperature. Pass the buffer containing the temperatures to the checking task using an RTOS queue.Write an "Introduction to using FreeRTOS" document in which you use your "Nuclear Reactor" code as an example to explain the key concepts of Semaphores, queues, dynamic memory allocation in an RTOS and timing in an RTOS.This is a code: Nuclear reactor. //////////////////////////////////////////////////////////////////////////////////////////////////////////////////// main.c////////////////////////////////////////////////////////////////////////////////////////////////////////////////#include/* Scheduler include files. */#include#include#include#include/*-----------------------------------------------------------*/voidTaskUpdatTemps(void *pvParameters);voidTaskCheckTemps(void *pvParameters);/*-----------------------------------------------------------*///global shared dataint temperatures[2];//xSemaphoreHandle-Data structure managed by the RTOSxSemaphoreHandletemperaturesSem;xSemaphoreHandleReleaseSem;ISR(INT0_vect){ //Release the semaphore xSemaphoreGive(ReleaseSem);}intmain(void){ //Set direction of PORTB pin 5,6,7 as output pins DDRB |= (1< DDRB |= (1< DDRB |= (1< //Generate in on rising edge on INT0 pin - bits in EICRA Reg EICRA |= (1 << ISC00); EICRA |= (1 << ISC01); //Enable - bits in EIMSK reg EIMSK |= (1 << INT0); //Enable interrupts - Set I bit in SR(status register) sei(); xTaskCreate( TaskUpdatTemps , NULL , 256 , NULL , 2 , NULL ); xTaskCreate( TaskCheckTemps , NULL , 256 , NULL , 1 , NULL ); //Create semaphores vSemaphoreCreateBinary(temperaturesSem); vSemaphoreCreateBinary(ReleaseSem); //Start the task Scheduler vTaskStartScheduler();/*while(1) { //do nothing }*/}/*-----------------------------------------------------------*/voidTaskUpdatTemps(void *pvParameters){//Just keep compiler happy (void)pvParameters; staticint count = 0;while(1) { //Take the semaphore ReleaseSem xSemaphoreTake(ReleaseSem, portMAX_DELAY); //Take the semaphore temperatureSem to protect atomic variables xSemaphoreTake(temperaturesSem, portMAX_DELAY); temperatures[0]=count; temperatures[1]=count; //Give the semaphore back xSemaphoreGive(temperaturesSem); //Increment Count variable count ++; //Toggle portb pin 6 to turn LED on/off (Using Exclusive OR) PORTB ^= (1< //Delay for 1 sec //vTaskDelay( 1000 / portTICK_RATE_MS ); }}/*-----------------------------------------------------------*/voidTaskCheckTemps(void *pvParameters) // Main Green LED Flash{int temp0, temp1; (void) pvParameters;//Set direction of pin to be an output DDRB |= (1<while(1) { //Take the semaphore temperatureSem to protect atomic variables xSemaphoreTake(temperaturesSem, portMAX_DELAY); temp0=temperatures[0]; //Delay for 1 sec vTaskDelay( 1000 / portTICK_RATE_MS ); temp1=temperatures[1]; //Give the semaphore back xSemaphoreGive(temperaturesSem); //Toggle portb pin 5 to turn LED on/off (Using Exclusive OR) PORTB ^= (1< //Checking to see if temperatures match if(temp0 != temp1) { PORTB |= (1< } }}
i have a homework in TinyOs
Redundant sequence identification: Given a set of k DNA sequences, S = { s 1, s 2, ... , s k } give an optimal algorithm to identify all sequences that are completely contained
Operation • This application uses an Alligator class that implements a Countable interface to display Alligator objects as shown above. • This application uses a Sheep class that i
Write a java program for inserting a particular node.
Write a program that can facilitate searching by indexing text files according to words. In this task, you are given a large text file, sample.txt, which you will need to index the
A specification of a function TOARR is given below. function TOARR(n in Int, s in Stack of Int) return in Array of Int pre n ≥ 0. post The returned value is an array of size
Your solution to the problem should be housed within a while loop, which allows the grader to test your solution repeatedly without having to re-execute the script, as shown in cla
Question: (a) An HTML file "decor.html" uses an external Cascading Style Sheet file name "nicedesign.css". Users are viewing the Web page making use of different kinds of br
All programs have to be done in console application. Program 1, 2 and 3 are due on 2/11/12 Program 4, 5, and 6 are due on 2/18/12 Program 7, 8, and 9 are due on 2/25/12 Program 10
For this assignment you will need to design and construct a basic math program which targets elementary school children. Your program must adhere to the following steps and require
Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!
whatsapp: +1-415-670-9521
Phone: +1-415-670-9521
Email: [email protected]
All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd