Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support using the bitmap device in the Arduino library #2486

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Commits on Aug 13, 2024

  1. Split TGA bits from u8x8_d_bitmap.c

    This moves the TGA export code into a new file called
    u8x8_d_bitmap_tga.c, which removes the stdio.h dependency from
    u8x8_d_bitmap.c (making that file compilable on microcontroller targets
    as well).
    
    This slightly reworks the TGA export code so it uses the external bitmap
    device API instead of reading directly from the global u8x8_bitmap
    struct.
    
    This also moves u8x8_d_bitmap.c into csrc, so it is included in all
    builds (including the Arduino build).
    matthijskooijman committed Aug 13, 2024
    Configuration menu
    Copy the full SHA
    b53b29f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    71397f5 View commit details
    Browse the repository at this point in the history
  3. arduino/create_release.sh: Use mkdir -p

    This prevents warnings when directories already exist and creates parent
    directories as needed.
    matthijskooijman committed Aug 13, 2024
    Configuration menu
    Copy the full SHA
    5099549 View commit details
    Browse the repository at this point in the history