Coder Social home page Coder Social logo

pmaxd's People

Contributors

ayasystems avatar viknet365 avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

pmaxd's Issues

CS8 bits being reset (on raspberry pi, may not affect other platforms)

In pmaxd you will find two lines :
options.c_cflag |= (CLOCAL | CREAD | CS8 );
options.c_cflag &= ~(PARENB | CSTOPB | CSIZE);

Looking at the values for these constants in /usr/include/asm-generic/termbits.h
CS8 0000060
CLOCAL 0004000
CREAD 0000200
Or'ed together = 0004260

options.c_cflag &= ~(PARENB | CSTOPB | CSIZE);
PARENB 0000400
CSTOPB 0000100
CSIZE 0000060
Or'ed together= 0000560
Negated = FFFFA9F

So the bitwise AND of the second line is ANDing the 6 (sixth digit) with the 9 giving 0 ... which resets the two bits that are used for the character set leaving you with CS5 (which is defined as 0000000 in the include file).

Solution - edit pmaxd.c and swap these two lines over.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.