Search results

  1. V

    Embedded Project In Linux

    when I go to home, I see tmp folder under this folder there is floder sdcc-3.6.0. does it means that file has been extracted under tmp folder ? I think yas So I think to install compiler I have to follow below steps So I have to create user folder first then under the user folder I have to...
  2. V

    Embedded Project In Linux

    First I downloaded software that is stored in download folder of ubuntu than I extract that file than I followed following step. created tmp directory cd ~ mkdir tmp cd tmp what is meaning of this line "tar -xjf ../sdcc-2.7.0-i386-unknown-linux2.5.tar.bz2" should I...
  3. V

    Embedded Project In Linux

    yas I want to develop program for 8051 microcontroller. actually I have experience with windows.Now I want to work with Linux I am learning about Linux . I searched on internet SDCC support 8051 microcontroller. than I downloaded SDCC . Now I am trying to install sdcc compiler on ubuntu using...
  4. V

    Embedded Project In Linux

    Thanks for your help. I am studying some material. If there will be doubt anywhere I will ask
  5. V

    what is kernel development in operating system?

    Hello everyone by the definition I understand that kernel is center core of operating system that provide basic service to operating system and decide when and how long program should be run on system... I know real time operating system made of several lines of code.. whole RTOSprogram...
  6. V

    Embedded Project In Linux

    Hello Everyone I have installed ubuntu in my PC. I want to develop embedded project under Linux operating system. I have been developed embedded project under windows based operating system. I have heard that most of companies develop their project on Linux for security purpose . so that's why I...
  7. V

    Certificate issue with electronicspoint.com

    yas same things happened with me . when I tried to access I got the warning message
  8. V

    development of framework for microcontroller?

    which type of code are you talking. in my thinking there are two type code source code we write in c to perform specific like blink led , start motor etc and other one is code for framework yas I have written some code for LED , LCD motor... etc I have seen in most of company require skill...
  9. V

    development of framework for microcontroller?

    Now I understand what is framework ,and what is use of framework . Now I am searching about development of framework to program micro controller. as I know to develop software program I need compiler and I have to select language. so I choose Keil compiler and C programming. because I am...
  10. V

    development of framework for microcontroller?

    Now I understand Framework is software program that is use to program microcontroler on computer. framework program can be developed by using c, c++ and .net programming language. my doubt is that when I program p89v51rd2. i don't develop framework for PC. I just use flesh magic software to...
  11. V

    development of framework for microcontroller?

    I was reading this link https://www.researchgate.net/publication/228571581_A_framework_for_developing_a_microchip_PIC_microcontroller_based_applications This paper presents a framework for developing applications based on a Microchip PIC microcontroller (μC).thats why I am confused and also...
  12. V

    development of framework for microcontroller?

    hello I am confused on framework development for microcontroller. I did google search and by doing some study. I found that it is program we develop for microcontroller, that is written in language (c programming ). without framework program we can't program microcontroller on PC. but my...
  13. V

    design of RTOS using few features

    Thank you very much for your response. can you tell me little bit. what you did in your project . what was the main purpose of your project.
  14. V

    Which Microcontroller should I use for my project?

    there are different type's of microcontrolers and compiler's. you can use 8051 microcontroller with keil compiler. and flesh magic software to programmed your microcontroller (8051)
  15. V

    design of RTOS using few features

    Hello everyone I have question in mind. is it possible to develop RTOS program for microcontroller using some features. suppose I want use only kernel, multitasking and scheduling to develop RTOS Program. I have seen whole program of RTOS is very complex. so that's why I want to understand...
  16. V

    Task function in program

    sorry for taking so much time. if you look at my first post I tried to explain with example. I am not asking answers. I am asking only idea. suppose you have only Microcontroller , LED and LCD. and you have connected LCD and LED to Microcontroller. what could you do with these devices using...
  17. V

    Task function in program

    Thanks for your effort and time. I am not asking for any material. it will be fine for me if you can tell me with specific device (LED or LCD) as you told me in your previous post whats the requirement ? which device is connected with microcontroler ? how many task we are going to do ? what...
  18. V

    Task function in program

    I have downloaded book and pdfs I am studying documents . it has been long time searching but still have many doubts. Can you give me some simple assignment or task for further research just for learning
  19. V

    Task function in program

    I have only two doubt type 1. do we create task in program for only one device ? Task1 turn ON LED Task2 delay Task3 Turn Off LED Type 2 do we create task in program for multiple devices ? task 1 Turn on LED Task 2 turn On Motor Task 3 display message on LCD
  20. V

    Task function in program

    Hello I was reading document , there was topic Task function with part of program. its related to RTOS program. int main ( void ) { vInitSystem();// Initialization of peripherals while(1) // Infinitive function calling loop { vTask1(); // Calling task function named vTask1 vTask2(); //...
Top