mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-18 17:14:28 -04:00
boot: refactor battery checking to use new powctl apis
This commit is contained in:
parent
485304bd17
commit
708f5bf1fb
44 changed files with 1426 additions and 1554 deletions
36
libraries/libstratosphere/source/cal/cal_fs_utils.cpp
Normal file
36
libraries/libstratosphere/source/cal/cal_fs_utils.cpp
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* Copyright (c) 2018-2020 Atmosphère-NX
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms and conditions of the GNU General Public License,
|
||||
* version 2, as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
* more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#include <stratosphere.hpp>
|
||||
#include "cal_crc_utils.hpp"
|
||||
#include "cal_fs_utils.hpp"
|
||||
|
||||
namespace ams::cal::impl {
|
||||
|
||||
Result ReadCalibrationBlock(s64 offset, void *dst, size_t block_size) {
|
||||
/* Open the calibration binary partition. */
|
||||
std::unique_ptr<fs::IStorage> storage;
|
||||
R_TRY(fs::OpenBisPartition(std::addressof(storage), fs::BisPartitionId::CalibrationBinary));
|
||||
|
||||
/* Read data from the partition. */
|
||||
R_TRY(storage->Read(offset, dst, block_size));
|
||||
|
||||
/* Validate the crc. */
|
||||
R_TRY(ValidateCalibrationCrc(dst, block_size));
|
||||
|
||||
return ResultSuccess();
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue