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

Generating an array for use with an LCD

I'm working on a project using an AT89C51CC03 to drive an LCD (SED1330 based). I'm using Bresenhams Line Drawing Algorithm to calculate where a straight line should go given start & end points. The algorithm writes to a character array where it draws a '*' if the line is supposed to go there and a *-* if the pixel (array element) will be empty.

To send the finished line to the screen, it needs to be in bit format, ie each '*' needs to be a 1 and an empty pixel 0. How can I address a big array (64 x 64 pixels in the end) like this? I don't mind writing the line image to an array then transferring it to a 1D bitmap array which I will then send to the screen.

Cheers.

Parents
  • Because "OR" and "AND" are not C operators?

    Because even if you program in assembly, you still have to perform a mod 8 (mask with 07H, usually) and integer division to derive the bit and offset into the table?

    This complaint sounds somehing like, "oh, why use complexities like + and - when ADD and SUB does it without a hitch"? It's just notation; the meaning does not change.

Reply
  • Because "OR" and "AND" are not C operators?

    Because even if you program in assembly, you still have to perform a mod 8 (mask with 07H, usually) and integer division to derive the bit and offset into the table?

    This complaint sounds somehing like, "oh, why use complexities like + and - when ADD and SUB does it without a hitch"? It's just notation; the meaning does not change.

Children