BillS

Results 10 comments of BillS

Even after checking out v1.80 I am getting: ``` FAILED: CMakeFiles/game.dir/C_/Users/USERNAME/AndroidStudioProjects/games-samples/agdk/game_controller/common/demo_scene.cpp.o C:\Users\USERNAME\AppData\Local\Android\Sdk\ndk\21.4.7075529\toolchains\llvm\prebuilt\windows-x86_64\bin\clang++.exe --target=aarch64-none-linux-android21 --gcc-toolchain=C:/Users/USERNAME/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64 --sysroot=C:/Users/USERNAME/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -DIMGUI_IMPL_OPENGL_ES2 -Dgame_EXPORTS -IC:/Users/USERNAME/AndroidStudioProjects/games-samples/agdk/game_controller/gameactivity/app/src/main/cpp -IC:/Users/USERNAME/AndroidStudioProjects/games-samples/agdk/game_controller/gameactivity/app/src/main/cpp/../../../../../common -IC:/Users/USERNAME/AndroidStudioProjects/games-samples/agdk/game_controller/gameactivity/app/src/main/cpp/../../../../../../common/include -IC:/Users/USERNAME/AndroidStudioProjects/games-samples/agdk/game_controller/gameactivity/app/src/main/cpp/../../../../../../third_party/imgui -isystem C:/Users/USERNAME/.gradle/caches/transforms-2/files-2.1/dfcc27200594e40addd7a32f5a34e1f7/jetified-games-activity-1.1.0-beta03/prefab/modules/game-activity/include -isystem C:/Users/USERNAME/.gradle/caches/transforms-2/files-2.1/a5b29d7f2465e00d5e172357944bb069/jetified-games-controller-1.1.0-beta01/prefab/modules/paddleboat_static/include -isystem C:/Users/USERNAME/.gradle/caches/transforms-2/files-2.1/def4df69013b2e41dd02eef355809197/jetified-libpng-1.6.37-alpha-1/prefab/modules/png16-static/include -g -DANDROID -fdata-sections...

I changed: https://github.com/android/games-samples/blob/8800f3d551017c80c7fc7ae2677ce7c89d8a9f31/agdk/game_controller/common/demo_scene.cpp#L765-L768 to: ```cpp if (ImGui::BeginTable("##motiontable", 2, ImGuiTableColumnFlags_WidthFixed, ImVec2(0.0f, ImGui::GetTextLineHeightWithSpacing() * 4.5f))) { ImGui::TableSetupColumn("Accelerometer ", ImGuiTableColumnFlags_WidthFixed); ImGui::TableSetupColumn("Gyroscope ", ImGuiTableColumnFlags_WidthFixed); ``` Compiles and seems to work fine.

I got a bit adventurous and tried the cooler_boost. It works! The fan started humming. ```bash $ echo "on" | sudo tee /sys/devices/platform/msi-ec/cooler_boost on $ echo "off" | sudo tee...

> I would like to explore some of unknown values here: > > > /sys/devices/platform/msi-ec/webcam > > /sys/devices/platform/msi-ec/win_key > > /sys/devices/platform/msi-ec/fn_key > > Has your laptop these buttons? If so,...

Camera off: ```bash $ cat /sys/devices/platform/msi-ec/webcam unknown (9) ``` Camera on: ```bash $ cat /sys/devices/platform/msi-ec/webcam unknown (75) ``` I am actually not sure what the win/fn key switch is doing....

> > Win and Fn key should be swappable from Dragon Center/Bios settings. But if you don't find this option, maybe it won't be available for laptop model. Normal default...

> Change the constants for the webcam to: > > ``` > #define MSI_EC_WEBCAM_ON 0x9 > #define MSI_EC_WEBCAM_OFF 0x4b > ``` I did: ```c #define MSI_EC_WEBCAM_ON 0x09 // 0x4a #define...

> The module seems the previous one. Uninstall it and clear the staging folder before repeating the steps. OK I ran `sudo make uninstall` first and now it works. ```c...

Yes bitwise (instead of byte) was what I was thinking of. Again I have no idea how these kernel/drivers work, but that was my thought. I think I am happy...

I know there hasn't been much discussion for over a year on this thread now, but I would also like to ask for a way to disable low persistence mode...