Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-07-18 | irmp: silence printf(3) format warnings (simple approach) | Gerhard Sittig | |
Pick low hanging fruit. Stick with the previous implementation's format specifiers, assume that they work on all platforms which IRMP supports. Cast arguments to mere integers where necessary instead, again assume that their range fits as they did in the previous implementation. This silences several of these compiler warnings: irmp.c:3332:25: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘long unsigned int’ [-Wformat=] ANALYZE_PRINTF ("protocol = NIKON, start bit timings: pulse: %3d - %3d, pause: %3d - %3d\n", ^ | |||
2020-07-18 | irmp: introduce sigrok specific README file | Gerhard Sittig | |
Introduce a separate README-sigrok.txt file, to leave the upstream project's README.txt file as is. Mention that libsigrokdecode only contains a subset of the full IRMP project source code. | |||
2020-07-18 | irmp: introduce (part of) upstream IRMP sources | Gerhard Sittig | |
Introduce source files and documentation from the GPL'ed IRMP project. Commit those files which represent the IRMP core logic (detection of IR frames), and reference the project's homepage for the remainder. These files correspond to svn://mikrocontroller.net/irmp r191 |