Created
May 9, 2023 09:25
-
-
Save pamaury/42d0e142507e10fa5d95b0b0b7cea14f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Copyright lowRISC contributors. | |
// Licensed under the Apache License, Version 2.0, see LICENSE for details. | |
// SPDX-License-Identifier: Apache-2.0 | |
#include <stdbool.h> | |
#include "sw/device/lib/runtime/log.h" | |
#include "sw/device/lib/testing/test_framework/ottf_main.h" | |
#include "sw/device/silicon_creator/lib/drivers/lifecycle.h" | |
#include "sw/device/silicon_creator/lib/drivers/otp.h" | |
#include "sw/device/silicon_creator/lib/manifest_def.h" | |
#include "otp_ctrl_regs.h" | |
OTTF_DEFINE_TEST_CONFIG(); | |
bool test_main(void) { | |
// Do nothing so that have plenty of time to connect to the JTAG TAP. | |
while(1) {} | |
return true; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment