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< } }}
Note: You should pay attention on following good practices: Appropriate code comments(If you make any assumptions clearly comment them in the code) Indentation
Write a program that accepts a date from the user in the form mm/dd/yyyy and then displays it in the form month dd, yyyy, where month is the name of the month. Enter a date (mm/d
maake a programme in C of HR system
Overview You will write a loadable kernel module. If you have an idea which you can convince me is a good idea that can not be done as a module, but only via direct modificatio
You must use the keyword ''var'' to create and initialize a variable. The placement of the variable creation in your code is very important. Examples: var first = 21; var secon
You are asked to develop a replicator (client) that distributes a large job over a number of computers (a server group) on a single switched LAN (our BU04 lab). In this assignment,
Eclipse Jsp Project. I am making a a project on my website and i was making a help support page on which the user can submit their question and the question is saved to a text file
1. Write a function that converts a character array to a signed decimal integer. Function prototype must be as follows: int asciiToInt( char *str, unsigned char* eflag) YOU MAY NO
Expertsmind brings you unique solution in java assignments String Handling Series signifies a sequence of character types. It has set duration of personality sequence. Onc
I do have an assignment in operating systems programming ... how can i attach my file?
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