• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

micropython / micropython / 12553
98%

Build:
DEFAULT BRANCH: master
Ran 10 Feb 2020 12:09PM UTC
Jobs 1
Files 270
Run time 24s
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

pending completion
12553

push

travis-ci

dpgeorge
docs/library: Fix framebuf monochrome 1-bit modes, swapping HLSB/HMSB.

This fix can be demonstrated by the following:

    b = bytearray(32)
    f = framebuf.FrameBuffer(b, 32, 8, framebuf.MONO_HLSB)
    f.pixel(0, 0, 1)
    print('MONO_HLSB', hex(b[0]))

    b = bytearray(32)
    f = framebuf.FrameBuffer(b, 32, 8, framebuf.MONO_HMSB)
    f.pixel(0, 0, 1)
    print('MONO_HMSB', hex(b[0]))

Outcome:

    MONO_HLSB 0x80
    MONO_HMSB 0x1

16435 of 16752 relevant lines covered (98.11%)

413494.07 hits per line

Jobs
ID Job ID Ran Files Coverage
3 12553.3 (NAME="unix coverage build and tests") 10 Feb 2020 12:09PM UTC 0
98.11
Travis Job 12553.3
Source Files on build 12553
Detailed source file information is not available for this build.
  • Back to Repo
  • Travis Build #12553
  • 88cbfd79 on github
  • Prev Build on master (#12545)
  • Next Build on master (#12554)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc