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
cmake_minimum_required(VERSION 3.16) | |
project(example_1) | |
include(CheckCXXCompilerFlag) | |
include(CheckCXXSourceCompiles) | |
include(CheckIncludeFile) | |
include(CheckIncludeFiles) | |
find_package(CopperSpice REQUIRED) | |
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
/home/stephan/yocto/poky-honister/bitbake/lib/bb/cooker.py:16: DeprecationWarning: module 'sre_constants' is deprecated | |
import sre_constants | |
28828 13:19:28.141493 --- Starting bitbake server pid 28828 at 2025-03-17 13:19:28.141481 --- | |
28828 13:19:28.143602 Started bitbake server pid 28828 | |
28828 13:19:28.143679 Entering server connection loop | |
28828 13:19:28.143803 Accepting [<socket.socket fd=6, family=1, type=1, proto=0, laddr=bitbake.sock>] ([]) | |
28828 13:19:28.144269 Processing Client | |
28828 13:19:28.144291 Connecting Client | |
28828 13:19:28.144412 Running command ['setFeatures', [2, 1]] | |
28828 13:19:28.144448 Command Completed |
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
/home/stephan/yocto/poky-honister/bitbake/lib/bb/cooker.py:16: DeprecationWarning: module 'sre_constants' is deprecated | |
import sre_constants | |
28828 13:19:28.141493 --- Starting bitbake server pid 28828 at 2025-03-17 13:19:28.141481 --- | |
28828 13:19:28.143602 Started bitbake server pid 28828 | |
28828 13:19:28.143679 Entering server connection loop | |
28828 13:19:28.143803 Accepting [<socket.socket fd=6, family=1, type=1, proto=0, laddr=bitbake.sock>] ([]) | |
28828 13:19:28.144269 Processing Client | |
28828 13:19:28.144291 Connecting Client | |
28828 13:19:28.144412 Running command ['setFeatures', [2, 1]] | |
28828 13:19:28.144448 Command Completed |
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
import pandas as pd | |
import matplotlib.pyplot as plt | |
import argparse | |
def load_data(input_path): | |
df = pd.read_csv(args.input_file, header=0, skipinitialspace=True, encoding="utf-8") | |
df.columns = df.columns.str.strip() | |
return df | |
def show_plot(dataframe): |
OlderNewer