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

PIC 16F84 integration in KEIL ARM

I just would like if there's any easy way to integrate a PIC on the Keil Board, the aim would be to input the program through an external PIC programmator and to send a simple instruction to the PIC through KEil board and to recover a signal from the PIC at the end of the program.
Once this would work, I would like to change the PIC program through the Keil ULINK2.
IS it possible and HOW
Thanks

Parents
  • Connect your PIC using the UART. Then your ARM can send commands and data to the PIC and pick up any results. An SPI channel is also excellent for connecting two processors. A SPI solution will allow direct logic-level connections, while the Keil board probably doesn't allow you to make use of the logic-level USART signals.

    By the way: It is always best to try to explain what problem you want to solve instead of jumping in directly with a specific technical question. We don't know if you are helped by a specific answer or if the "real" answer should be something else if we don't know the "story behind".

Reply
  • Connect your PIC using the UART. Then your ARM can send commands and data to the PIC and pick up any results. An SPI channel is also excellent for connecting two processors. A SPI solution will allow direct logic-level connections, while the Keil board probably doesn't allow you to make use of the logic-level USART signals.

    By the way: It is always best to try to explain what problem you want to solve instead of jumping in directly with a specific technical question. We don't know if you are helped by a specific answer or if the "real" answer should be something else if we don't know the "story behind".

Children