Search:

Type: Posts; User: OutThere

Search: Search took 0.00 seconds.

  1. Replies
    2
    Views
    1,065

    C operator Question

    I may have asked this question some time ago> i tried to check did not find anything so here it goes. How to evaluate this operation:
    PCA0MD &= ~0x40; PCA0MD is a register for a processor....
  2. Replies
    4
    Views
    3,739

    it's for an embedded microcontroller to interface...

    it's for an embedded microcontroller to interface w/ an LCD. When the LCD is powered on it takes 10ms to initialize where no instructions can be written. Durring this time the Line D7 is high then...
  3. Replies
    4
    Views
    3,739

    How to determin a delay

    How would i determine how long it takes to complete an instruction?

    for the below function i can pass an unsigned char "count" so i can adjust the delay ….so lets say I pass 1 how long would it...
  4. Replies
    1
    Views
    4,513

    Function retrun type and param list

    1.​​​It seems like at least for writting code for microcontroller eval boards that unlike assembler C does not do well with just listing rows and rows of code in "main.c" Seems like functions are the...
  5. Replies
    5
    Views
    2,975

    so would it be a bitwise AND 1's complement then...

    so would it be a bitwise AND 1's complement then NOT?
  6. Replies
    5
    Views
    2,975

    so the first part & is a bitwise of 0x40 01000000...

    so the first part & is a bitwise of 0x40 01000000 so would the first operand 0x40 be bitwised with the second operand of zeros? that would result in all zeros, then it would be bitwise not? the...
  7. Replies
    5
    Views
    2,975

    PCA0MD &= ~0x40; Need some help cyphering

    so PCAOMD is a register on a micro processor. so usually they have an 8 bit register that you can turn a function on or off by binary code so if it was just PCA0MD = 0x40 that would be 01000000 so...
Results 1 to 7 of 7