Skip to content

Commit

Permalink
hw.cpu_temp removed
Browse files Browse the repository at this point in the history
related to #174
  • Loading branch information
uliss committed May 7, 2024
1 parent 46c1e84 commit 7a7126e
Show file tree
Hide file tree
Showing 14 changed files with 1,093 additions and 1,232 deletions.
2 changes: 2 additions & 0 deletions ceammc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@
- renaming:
- prop.get~ renamed to prop.route~ (the old alias exists for the compatibility, but it prints a warning message)
- prop.split renamed to prop.route (the old alias exists for the compatibility, but it prints a warning message)
- removed:
- hw.cpu_temp removed, because more complete object is added: system.info
### Fixed:
- seq.life - fix errors on non square sizes (issue #203)

Expand Down
4 changes: 2 additions & 2 deletions ceammc/ext/doc/about.pd
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
#X text 150 164 Distribution version:;
#X text 150 179 ceammc version:;
#X text 150 149 Git commit:;
#X text 315 104 05 05 2024 UTC 22:27:44 ;
#X text 315 149 v2023.10-411-g92c023e71;
#X text 315 104 07 05 2024 UTC 08:42:32 ;
#X text 315 149 v2023.10-421-g46c1e84b9;
#X text 315 134 devel;
#X text 150 134 Git branch:;
#X text 315 164 v2023.10;
Expand Down
2,152 changes: 1,075 additions & 1,077 deletions ceammc/ext/doc/ceammc-help.pd

Large diffs are not rendered by default.

26 changes: 12 additions & 14 deletions ceammc/ext/doc/ceammc.hw-help.pd
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,18 @@
#X text 200 145 query the sudden motion sensor in Apples;
#X obj 30 173 hw.arduino;
#X text 200 173 Arduino device;
#X obj 30 201 hw.cpu_temp;
#X text 200 201 get CPU temperature;
#X obj 30 229 hw.display;
#X text 200 229 get/set display properties;
#X obj 30 257 hw.gamepad;
#X text 200 257 gamepad controller;
#X obj 30 285 hw.kbd_light;
#X text 200 285 Get/set keyboard light on some devices;
#X obj 30 313 hw.motu.avb;
#X text 200 313 controls Motu AVB devices over http requests;
#X obj 30 341 hw.printer;
#X text 200 341 Basic printing support;
#X obj 30 369 hw.serial;
#X text 200 369 serial port device;
#X obj 30 201 hw.display;
#X text 200 201 get/set display properties;
#X obj 30 229 hw.gamepad;
#X text 200 229 gamepad controller;
#X obj 30 257 hw.kbd_light;
#X text 200 257 Get/set keyboard light on some devices;
#X obj 30 285 hw.motu.avb;
#X text 200 285 controls Motu AVB devices over http requests;
#X obj 30 313 hw.printer;
#X text 200 313 Basic printing support;
#X obj 30 341 hw.serial;
#X text 200 341 serial port device;
#X obj 1 1 cnv 5 740 40 empty empty ceammc::hw 20 20 0 20 -104026
-4096 0;
#X obj 1 513 cnv 5 740 40 empty empty empty 17 7 0 10 -203890 -1 0;
Expand Down
1 change: 0 additions & 1 deletion ceammc/ext/doc/ceammc_deken_objlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,6 @@ global.set global named set object
hw.apple_smc query the system management control in Apples
hw.apple_sms query the sudden motion sensor in Apples
hw.arduino Arduino device
hw.cpu_temp get CPU temperature
hw.display get/set display properties
hw.gamepad gamepad controller
hw.kbd_light Get/set keyboard light on some devices
Expand Down
3 changes: 0 additions & 3 deletions ceammc/ext/doc/ceammc_lib.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1015,9 +1015,6 @@
<entry name="hw.arduino" descr="Arduino device" ref_view="object">
<xi:include href="hw.arduino.pddoc" parse="xml"/>
</entry>
<entry name="hw.cpu_temp" descr="get CPU temperature" ref_view="object">
<xi:include href="hw.cpu_temp.pddoc" parse="xml"/>
</entry>
<entry name="hw.display" descr="get/set display properties" ref_view="object">
<xi:include href="hw.display.pddoc" parse="xml"/>
</entry>
Expand Down
1 change: 0 additions & 1 deletion ceammc/ext/doc/docs.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,6 @@ set(DOC_FILES
hw.apple_smc
hw.apple_sms
hw.arduino
hw.cpu_temp
hw.display
hw.gamepad
hw.kbd_light
Expand Down
42 changes: 0 additions & 42 deletions ceammc/ext/doc/hw.cpu_temp.pddoc

This file was deleted.

1 change: 0 additions & 1 deletion ceammc/ext/src/hw/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ endif()
ceammc_hw_external(apple_smc)
ceammc_hw_external(apple_sms)
ceammc_hw_external(arduino)
ceammc_hw_external(cpu_temp)
ceammc_hw_external(display)
ceammc_hw_external(kbd_light)
ceammc_hw_external(motu_avb)
Expand Down
53 changes: 0 additions & 53 deletions ceammc/ext/src/hw/hw_cpu_temp.cpp

This file was deleted.

34 changes: 0 additions & 34 deletions ceammc/ext/src/hw/hw_cpu_temp.h

This file was deleted.

2 changes: 0 additions & 2 deletions ceammc/ext/src/hw/mod_hw.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
#include "hw_usb.h"
#endif

void setup_hw_cpu_temp();
void setup_hw_motu_avb();
void setup_hw_gamepad();
void setup_hw_printer();
Expand All @@ -25,7 +24,6 @@ void ceammc_hw_setup()
hw_setup_serial();
setup_hw_apple_smc();
setup_hw_apple_sms();
setup_hw_cpu_temp();
setup_hw_display();
setup_hw_gamepad();
setup_hw_printer();
Expand Down
2 changes: 1 addition & 1 deletion ceammc/gui/plugins/ceammc_popup_menu_ceammc.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
global.set
}}
{hw {
hw.apple_smc hw.apple_sms hw.arduino hw.cpu_temp hw.display hw.gamepad
hw.apple_smc hw.apple_sms hw.arduino hw.display hw.gamepad
hw.kbd_light hw.motu.avb hw.printer hw.serial
}}
{lang {
Expand Down
2 changes: 1 addition & 1 deletion ceammc/gui/plugins/ceammc_popup_menu_tree.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
global.set
}}
{hw {
hw.apple_smc hw.apple_sms hw.arduino hw.cpu_temp hw.display hw.gamepad
hw.apple_smc hw.apple_sms hw.arduino hw.display hw.gamepad
hw.kbd_light hw.motu.avb hw.printer hw.serial
}}
{lang {
Expand Down

0 comments on commit 7a7126e

Please sign in to comment.