Skip to content

Commit 1aa27d0

Browse files
committed
More repairs in CI
1 parent 774f7f4 commit 1aa27d0

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

ref_app/src/app/benchmark/app_benchmark.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
///////////////////////////////////////////////////////////////////////////////
2-
// Copyright Christopher Kormanyos 2007 - 2025.
2+
// Copyright Christopher Kormanyos 2007 - 2026.
33
// Distributed under the Boost Software License,
44
// Version 1.0. (See accompanying file LICENSE_1_0.txt
55
// or copy at http://www.boost.org/LICENSE_1_0.txt)

ref_app/src/app/benchmark/app_benchmark_ecc_generic_ecc.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
///////////////////////////////////////////////////////////////////////////////
2-
// Copyright Christopher Kormanyos 2023.
2+
// Copyright Christopher Kormanyos 2023 - 2026.
33
// Distributed under the Boost Software License,
44
// Version 1.0. (See accompanying file LICENSE_1_0.txt
55
// or copy at http://www.boost.org/LICENSE_1_0.txt)
@@ -31,7 +31,7 @@ namespace curve_secp256k1
3131
constexpr char SubGroupOrderN [] = "0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141"; // NOLINT(cppcoreguidelines-avoid-c-arrays,hicpp-avoid-c-arrays,cppcoreguidelines-pro-bounds-array-to-pointer-decay,modernize-avoid-c-arrays)
3232
constexpr auto SubGroupCoFactorH = static_cast<int>(INT8_C(1));
3333

34-
using hash_type = math::checksums::hash::hash_sha256<std::uint16_t>;
34+
using hash_type = math::checksums::hash::hash_sha256;
3535
}
3636

3737
namespace local
@@ -41,7 +41,7 @@ namespace local
4141
// Declare the secp256k1 digital signature type.
4242

4343
using digital_signature_secp256k1_type =
44-
generic_ecc::digital_signature_generic_ecc<static_cast<unsigned>(UINT16_C(256)),
44+
generic_ecc::digital_signature_generic_ecc<unsigned { UINT16_C(256) },
4545
std::uint32_t,
4646
curve_secp256k1::CurveName, // NOLINT(cppcoreguidelines-pro-bounds-array-to-pointer-decay,hicpp-no-array-decay)
4747
curve_secp256k1::FieldCharacteristicP, // NOLINT(cppcoreguidelines-pro-bounds-array-to-pointer-decay,hicpp-no-array-decay)

ref_app/target/micros/stm32f446/make/stm32f446.ld

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright Christopher Kormanyos 2007 - 2024.
2+
Copyright Christopher Kormanyos 2007 - 2026.
33
Distributed under the Boost Software License,
44
Version 1.0. (See accompanying file LICENSE_1_0.txt
55
or copy at http://www.boost.org/LICENSE_1_0.txt)
@@ -22,7 +22,7 @@ __initial_stack_pointer = 0x20002000 - 4;
2222
MEMORY
2323
{
2424
VEC(rx) : ORIGIN = 0x08000000, LENGTH = 0x300
25-
ROM(rx) : ORIGIN = 0x08000300, LENGTH = 32K - 0x300
25+
ROM(rx) : ORIGIN = 0x08000300, LENGTH = 64K - 0x300
2626
RAM(rwx) : ORIGIN = 0x20000000, LENGTH = 0x7000
2727
}
2828

0 commit comments

Comments
 (0)