Perform Static Code Review Analysis for “C:\**\LDRA_workarea\Examples\C_Testbed_examples\Testrain\Testrain.c” Generate Code review report and upload them. Perform Integration testing by including all the .C files available in the folder location C:\**\LDRA_workarea\Examples\Toolsuite\Cashregister_6.0\ ** A)Create…
Amol Survase
updated on 10 Oct 2023
Project Details
Leave a comment
Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.
Other comments...
Read more Projects by Amol Survase (9)
Project 2 - V&V SW Analysis II
Perform Static Code Review Analysis for “C:\**\LDRA_workarea\Examples\C_Testbed_examples\Testrain\Testrain.c” Generate Code review report and upload them. Perform Integration testing by including all the .C files available in the folder location C:\**\LDRA_workarea\Examples\Toolsuite\Cashregister_6.0\ ** A)Create…
10 Oct 2023 02:49 AM IST
Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)
/* P2: Measure Distance using Ultrasonic Distance Sensor *//// Master code#include#includeLiquidCrystal lcd(2,3,4,5,6,7);int Distance; void setup(){ Wire.begin(); Serial.begin(9600);} void loop(){ Wire.requestFrom(8,1); Distance=Wire.read(); lcd.setCursor(0,0); lcd.print("Distace= "); lcd.print(Distance); lcd.print("inch"); …
10 Oct 2023 02:03 AM IST
Project 1 - V&V SW Analysis - I
Test plan to test features of a new mobile phone (Blackbox test) that needs to be implemented based on the following requirements. (The product is still under development stage and is yet to be UA (User Acceptance ) tested .Every other thing to be included in the test plan can be hypothetical.
02 Oct 2023 11:04 AM IST
Project 1 - Controlling a DC motor using PWM and monitoring its Running status
//* Project.1: Change the Dc_Motor speed using PWM and //directio also with display speed on LCD display *// #include #include //header file #define F_CPU 8000000UL // CPU frequency #include #define sw (PINB&(1< #define rs_high PORTD|=(1< #define rs_low PORTD &=~(1< #define en_high PORTD |=(1<…
09 Sep 2023 01:59 AM IST
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
//* P2: Measure Distance using Ultrasonic Distance Sensor *//// Master code#include#includeLiquidCrystal lcd(2,3,4,5,6,7);int Distance; void setup(){ Wire.begin(); Serial.begin(9600);} void loop(){ Wire.requestFrom(8,1); Distance=Wire.read(); lcd.setCursor(0,0); lcd.print("Distace= "); lcd.print(Distance); lcd.print("inch"); …
08 Aug 2023 05:08 PM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
//* P1: Code for Master to receive name and display on LCD *// #include#includeLiquidCrystal lcd(6,7,2,3,4,5);#define SLAVE_ADDR 8#define NameSize 20 void setup(){Wire.begin();lcd.begin(16,2);Serial.begin(9600);} void loop(){Wire.requestFrom(SLAVE_ADDR,NameSize);String MyName="";while(Wire.available()){char b=Wire.read();MyName+=b;}lcd.setCursor(0,0);lcd.print(MyName);Serial.println(MyName);}…
30 Jul 2023 01:01 PM IST
Project 3
#include #include using namespace std;enum Type { GAS, DIESEL, ELECTRIC};class Vehicle {protected: string make; string model; int year; int odometer;public: Vehicle(const string& make, const string& model, int year, int odometer) : make(make), model(model), year(year), odometer(odometer) {}string getMake() const { return…
14 Jun 2023 03:43 PM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear #include<stdio.h> #include<stdlib.h> /* Functions used in our projects*/ void Initial_state_machine(); //function declaration void Gear_down(); void Checking_before_takeoff(); void Raising_gear();…
28 Apr 2023 10:56 AM IST
Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory) using Linked List
Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory) using Linked List #include <stdio.h>#include <stdlib.h> // A structure of linked list nodestruct node { int data; struct node *next; } *LLamol, *LLraj, *unionLL,…
23 Apr 2023 07:06 AM IST