Skip to content

Commit

Permalink
Next
Browse files Browse the repository at this point in the history
	modified:   eZ_include/ka_pp.h
	modified:   kadev_eclipsePlayground/Debug/src/subdir_vars.mk
	modified:   kadev_eclipsePlayground/src/main.c
	new file:   kadev_eclipsePlayground/src/rtc_ex.c
	modified:   kadisp/kadisp.c
	modified:   kadisp/kadisp.h
	modified:   kadisp/kadisp_tests.c
	modified:   kadisp/kadisp_tests.h
	modified:   kadisp/ssd1780_oled_cntrl.c
	modified:   kadisp/ssd1780_oled_cntrl.h
  • Loading branch information
kamichal committed Jan 1, 2015
1 parent a76384e commit b0eb4f9
Show file tree
Hide file tree
Showing 29 changed files with 2,901 additions and 2,378 deletions.
5 changes: 5 additions & 0 deletions eZ_include/ka_pp.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@

#define expect_match(fcn_call, exp_val, ret_val) expect_match_ret_msg(fcn_call, exp_val, "", ret_val)

#define k_abs(a) (a >= 0) ? a : -a
#define k_min(a,b) (a < b) ? a : b
#define k_max(a,b) (a > b) ? a : b
#define k_min_max(a,min,max) ((a < min) ? min : (a>max ? max : a))



#endif /* KA_PP_H_ */
2 changes: 1 addition & 1 deletion kadev_eclipsePlayground/Debug/ccsObjs.opt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
"./eZ_include/usbstk5515_led.obj" "./eZ_include/usbstk5515_i2c.obj" "./eZ_include/usbstk5515_gpio.obj" "./eZ_include/usbstk5515.obj" "./kadisp/ssd1780_oled_cntrl.obj" "./kadisp/kadisp_tests.obj" "./kadisp/kadisp.obj" "./kadisp/font_8x6_philippe.obj" "./src/main.obj" "./src/kairq.obj" "../C5515.cmd" -l"libc.a" -l/km/ti/c55xx_csl/build/C55XXCSL_LP.lib
"./eZ_include/usbstk5515_led.obj" "./eZ_include/usbstk5515_i2c.obj" "./eZ_include/usbstk5515_gpio.obj" "./eZ_include/usbstk5515.obj" "./kadisp/ssd1780_oled_cntrl.obj" "./kadisp/kadisp_tests.obj" "./kadisp/kadisp.obj" "./kadisp/font_8x6_philippe.obj" "./src/rtc_ex.obj" "./src/main.obj" "./src/kairq.obj" "../C5515.cmd" -l"libc.a" -l/km/ti/c55xx_csl/build/C55XXCSL_LP.lib
Binary file modified kadev_eclipsePlayground/Debug/eZ_include/usbstk5515.obj
Binary file not shown.
Binary file modified kadev_eclipsePlayground/Debug/eZ_include/usbstk5515_gpio.obj
Binary file not shown.
Binary file modified kadev_eclipsePlayground/Debug/eZ_include/usbstk5515_i2c.obj
Binary file not shown.
Binary file modified kadev_eclipsePlayground/Debug/eZ_include/usbstk5515_led.obj
Binary file not shown.
830 changes: 416 additions & 414 deletions kadev_eclipsePlayground/Debug/kadev_ecl.map

Large diffs are not rendered by default.

Binary file modified kadev_eclipsePlayground/Debug/kadev_ecl.out
Binary file not shown.
Loading

0 comments on commit b0eb4f9

Please sign in to comment.