This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

PROJECT QUIERY

My project implimentation of CAN protocol using LPC2148 in green house system. project code dose not run in keil(micro-vision4).what I do?

Parents
  • Developing isn't the art of writing source code lines and then ask a web forum why the code doesn't do what you expect. Documentation and debugging are also important parts of that development process.

    So compare your documentation of what was expected to happen with what really did happen. Read processor documentation and source code and figure out why you have differences between the requirements specification and the reality. Fix found problems and repeat the process.

Reply
  • Developing isn't the art of writing source code lines and then ask a web forum why the code doesn't do what you expect. Documentation and debugging are also important parts of that development process.

    So compare your documentation of what was expected to happen with what really did happen. Read processor documentation and source code and figure out why you have differences between the requirements specification and the reality. Fix found problems and repeat the process.

Children
  • Not to mention Analysis and Design - which should come before writing code!

    Analysis is about gaining a full undertanding of the requirement; ie, the problem to be solved;

    Design is about formulating a solution to the problem;

    Coding is the final step - putting the design into practice.