NXC C programs, Other Subject

Assignment Help:
A description of each function used in the program.

Theree programs:

/* HiTechnic Experimenter''s Kit Program

Experiment - 6 Reaction Time Measurement

This program measures the time taken to press a button switch after an LED is turned on.

(c) HiTechnic 2009

*/
#include "NXCDefs.h"

#define PROTO_PORT IN_1

int currtime;
int deltatime;
int randomtime;
int inputdata;
int outputdata;
int count;
byte cmndbuf[]; // buffer for outbound I2C command
byte respbuf[]; // buffer for inbound I2C response

/* protoboard I/O map
42,43 - A0 input
44,45 - A1 input
46,47 - A2 input
48,49 - A3 input
4A,4B - A4 input
4C - B inputs
4D - B outputs
4E - B controls
*/

void readdata()
{
ArrayInit(cmndbuf, 0, 2); // set the buffer to hold 2 values
cmndbuf[0] = 0x02; // set write to channel
cmndbuf[1] = 0x4C; // to set read address
count=1; // 1 byte to read
I2CBytes(PROTO_PORT, cmndbuf, count, respbuf); // issue I2C write command and read the byte back
inputdata=respbuf[0]&0x03;
}

void writedata()
{
ArrayInit(cmndbuf, 0, 3); // set the buffer to hold 3 values
cmndbuf[0] = 0x02; // set write to channel
cmndbuf[1] = 0x4D; // to set write address
cmndbuf[2] = outputdata; // to set write data
count=0; // no bytes to read
I2CBytes(PROTO_PORT, cmndbuf, count, respbuf); // issue I2C write command and read the byte back
}

task main()
{
SetSensorLowspeed(PROTO_PORT); // set sensor port 1 to low speed serial (I2C)
Wait(100);

ArrayInit(cmndbuf, 0, 3); // set the buffer to hold 3 values
cmndbuf[0] = 0x02; // set write to channel
cmndbuf[1] = 0x4E; // to set write address
cmndbuf[2] = 0x30; // to write 001111
count=0; // no bytes to read
I2CBytes(PROTO_PORT, cmndbuf, count, respbuf); // issue I2C write command
Wait(100);

while (TRUE)
{
outputdata=0;
writedata();
ClearScreen();
TextOut(20, LCD_LINE2, "running");
randomtime=Random(5000)+5000;
Wait(randomtime);

outputdata=0x10;
writedata();
currtime=CurrentTick();

inputdata=0x00;
while(inputdata!=0x01)
{
readdata();
}
deltatime=CurrentTick()-currtime;
ClearScreen();
NumOut(20, LCD_LINE2, deltatime);

inputdata=0x00;
while(inputdata!=0x03)
{
readdata();
}
}
}

Related Discussions:- NXC C programs

History, why are colonies useful to have if a nation is thinking about goin...

why are colonies useful to have if a nation is thinking about going to war?

Importance of the project proposal, The importance of producing a well-defi...

The importance of producing a well-defined project proposal cannot be overstated. The activity of preparing a full project proposal provides you with an opportunity to think throug

Digital electronics and microprocessor, Write a control word for counter 1 ...

Write a control word for counter 1 of 8253 / 8254 that selects the following options: load least significant byte only, mode 5 of operation and binary counting. Then write an instr

Electronic data interchange standards, EDI STANDARDS Commonly speaking,...

EDI STANDARDS Commonly speaking, EDI is measured to be a technical representation of a business discussion between two entities, either in-house or outside. Note, there is a ob

Dfine meaning of adhocracy, Adhocracy-A form of business management which e...

Adhocracy-A form of business management which emphasizes individual initiative and self-organization in order to accomplish tasks. This is in contrast to bureaucracy which relies o

Describe the models of managed care, The following chart is just one exampl...

The following chart is just one example of how money flows from the employer who purchases a health plan, to the providers: The employer pays the Health plan on a monthly basis.

Discuss marxs concept of alienation, Question 1: The process of alienat...

Question 1: The process of alienation is broken down into four conceptually discrete but related spheres. Discuss Marx's concept of alienation. Give examples from the lab

Process and mechanical design and cost estimation, I need help with project...

I need help with projects with following details project related to process and mechanical design and cost estimation in Manufacturing of formaldehyde and hydrogen peroxide enzyma

Society, Society: Society is made up of people, groups, networks, insti...

Society: Society is made up of people, groups, networks, institutions, organizations and systems. These aspects of society may include local, national and international pattern

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

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!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd