Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-07-18 | irmp: silence signedness compiler warning in IR command comparison | Gerhard Sittig | |
Assume that IR command codes can get represented by a C language 'int' data type. The other value in the comparison is another 'int' anyway. | |||
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 (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 |