Jump to content

pashamray

Members
  • Posts

    19
  • Joined

  • Last visited

Posts posted by pashamray

  1. On 29/06/2018 at 16:46, lucio said:
    
    Hello everyone, I need help with the display of the 1616 nokia with the controller SPFD54124B, 
    I have in my hands an arduino one Atmega 328p and I could not find in my searches a safe source that made the same work,
     I am a beginner and I do not have much experience, I'm open to suggestions and from now on I apologize for any errors.

    Google: arduino nokia 1616

    first link: https://github.com/fire0shadow/Adafruit-SPFD54124B

    https://github.com/fire0shadow/Adafruit-SPFD54124B/blob/master/examples/SPFD54124B.ino

     

     

    Run it first. If everything is alright. then you can continue

  2. On 12/11/2017 at 01:20, Joel Bodenmann said:

    Can you please provide a ZIP containing your entire ChibiOS project so we can have a go on it ourselves?
    We haven't had any problems at all with using µGFX with ChibiOS and neither did anybody else - this has to be something very small in the build setup :)

    Hi.

    These errors occur for ChibiOS / RT, versions more than 4. Because version it is rigidly declared in the file gos_chibios.h and gos_chibios.c.

    Thank you

  3. Thank you.

    I found a bug, I'm ashamed.

    I used to output data code:


    unsigned int i;

    for (i = 0; i < (GDISP_SCREEN_WIDTH * (GDISP_SCREEN_HEIGHT / 8)); i++) {
    write_data(g, RAM(g) + i, 1);
    }

    as needed:


    unsigned int i;

    for (i = 0; i < (GDISP_SCREEN_WIDTH * (GDISP_SCREEN_HEIGHT / 8)); i++) {
    write_data(g, RAM(g)[i], 1);
    }

    sorry.

    uploaded working code repository.

×
×
  • Create New...