Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(app): rename folder to embedded-systems #22350

Merged
merged 1 commit into from
Jan 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ data-visualization/grafana/hm-panel-plugin/.config
# data-visualization/metabase/plugins
desktop-qt/CMakeLists.txt.user
digital-design/verilog/output
embedded/decode-can-data/data
embedded-systems/decode-can-data/data
hardware-in-the-loop/national-instruments/hm-tdms/data
hardware-in-the-loop/national-instruments/veristand/VeriStandZeroMQBridge/packages
hardware-in-the-loop/national-instruments/veristand/VeriStandZeroMQBridge/VeriStandZeroMQBridge/bin
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/.lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ jobs:
run: |
uv run poe lint-c-cpp-cpplint --repository=asterios/led-blinker --extensions=c,h --recursive asterios/led-blinker
uv run poe lint-c-cpp-cpplint --repository=compiler-infrastructure/llvm --extensions=cpp,hpp --recursive compiler-infrastructure/llvm
uv run poe lint-c-cpp-cpplint --repository=embedded/freertos --extensions=ino --recursive embedded/freertos
uv run poe lint-c-cpp-cpplint --repository=embedded-systems/freertos --extensions=ino --recursive embedded-systems/freertos
uv run poe lint-c-cpp-cpplint --repository=hm-kafka/kafka-client/kafka-c/avro-producer --extensions=c,h --recursive hm-kafka/kafka-client/kafka-c/avro-producer
uv run poe lint-c-cpp-cpplint --repository=matlab/call-c-function-in-matlab --extensions=c,h --recursive matlab/call-c-function-in-matlab
uv run poe lint-c-cpp-cpplint --repository=matlab/call-c-function-in-matlab --extensions=c,h --recursive matlab/call-c-function-in-matlab
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/.static-type-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,9 @@ jobs:
uv run poe static-type-check-python --package=data-visualization.grafana.hm-dashboard
uv run poe static-type-check-python --package=data-visualization.iads.iads-data-manager.iads-config-reader
uv run poe static-type-check-python --package=data-visualization.iads.iads-data-manager.iads-data-reader
uv run poe static-type-check-python --package=embedded.decode-can-data
uv run poe static-type-check-python --package=embedded.format-can-data
uv run poe static-type-check-python --package=embedded.hm-serial
uv run poe static-type-check-python --package=embedded-systems.decode-can-data
uv run poe static-type-check-python --package=embedded-systems.format-can-data
uv run poe static-type-check-python --package=embedded-systems.hm-serial
uv run poe static-type-check-python --package=hardware-in-the-loop.national-instruments.hm-pyvisa
uv run poe static-type-check-python --package=hardware-in-the-loop.national-instruments.hm-tdms
uv run poe static-type-check-python --package=hardware-in-the-loop.national-instruments.veristand.hm-veristand
Expand Down
48 changes: 24 additions & 24 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ jobs:
- 'machine-learning/dali/**'
decode-can-data:
- '.github/workflows/test.yml'
- 'embedded/decode-can-data/**'
- 'embedded-systems/decode-can-data/**'
development-aws-glue-spark-scripts:
- '.github/workflows/test.yml'
- 'cloud-infrastructure/terraform/environments/development/aws/general/files/aws-glue/spark-scripts/**'
Expand All @@ -177,7 +177,7 @@ jobs:
- 'cloud-infrastructure/terraform/environments/production/aws/general/files/aws-glue/spark-scripts/**'
format-can-data:
- '.github/workflows/test.yml'
- 'embedded/format-can-data/**'
- 'embedded-systems/format-can-data/**'
convolutional-neural-network:
- '.github/workflows/test.yml'
- 'machine-learning/convolutional-neural-network/**'
Expand Down Expand Up @@ -360,7 +360,7 @@ jobs:
- 'cloud-computing/hm-ray/applications/process-flight-data/**'
hm-serial:
- '.github/workflows/test.yml'
- 'embedded/hm-serial/**'
- 'embedded-systems/hm-serial/**'
hm-sglang:
- '.github/workflows/test.yml'
- 'machine-learning/hm-sglang/**'
Expand Down Expand Up @@ -441,7 +441,7 @@ jobs:
- 'computer-vision/open-clip/**'
pack-unpack-data:
- '.github/workflows/test.yml'
- 'embedded/pack-unpack-data/**'
- 'embedded-systems/pack-unpack-data/**'
prometheus:
- '.github/workflows/test.yml'
- 'data-storage/prometheus/**'
Expand Down Expand Up @@ -1168,23 +1168,23 @@ jobs:
with:
version: 0.5.14
enable-cache: true
cache-dependency-glob: embedded/decode-can-data/uv.lock
cache-dependency-glob: embedded-systems/decode-can-data/uv.lock
- name: Set up Python
uses: actions/[email protected]
with:
python-version-file: embedded/decode-can-data/pyproject.toml
python-version-file: embedded-systems/decode-can-data/pyproject.toml
- name: Install dependencies
working-directory: embedded/decode-can-data
working-directory: embedded-systems/decode-can-data
run: |
uv sync --dev
- name: Test
working-directory: embedded/decode-can-data
working-directory: embedded-systems/decode-can-data
run: |
uv run poe test-coverage
- name: Upload coverage to Codecov
uses: codecov/[email protected]
with:
directory: embedded/decode-can-data
directory: embedded-systems/decode-can-data

format-can-data-test:
name: Format CAN Data | Test
Expand All @@ -1201,23 +1201,23 @@ jobs:
with:
version: 0.5.14
enable-cache: true
cache-dependency-glob: embedded/format-can-data/uv.lock
cache-dependency-glob: embedded-systems/format-can-data/uv.lock
- name: Set up Python
uses: actions/[email protected]
with:
python-version-file: embedded/format-can-data/pyproject.toml
python-version-file: embedded-systems/format-can-data/pyproject.toml
- name: Install dependencies
working-directory: embedded/format-can-data
working-directory: embedded-systems/format-can-data
run: |
uv sync --dev
- name: Test
working-directory: embedded/format-can-data
working-directory: embedded-systems/format-can-data
run: |
uv run poe test-coverage
- name: Upload coverage to Codecov
uses: codecov/[email protected]
with:
directory: embedded/format-can-data
directory: embedded-systems/format-can-data

data-distribution-service-test:
name: Data Distribution Service | Test
Expand Down Expand Up @@ -3188,23 +3188,23 @@ jobs:
with:
version: 0.5.14
enable-cache: true
cache-dependency-glob: embedded/hm-serial/uv.lock
cache-dependency-glob: embedded-systems/hm-serial/uv.lock
- name: Set up Python
uses: actions/[email protected]
with:
python-version-file: embedded/hm-serial/pyproject.toml
python-version-file: embedded-systems/hm-serial/pyproject.toml
- name: Install dependencies
working-directory: embedded/hm-serial
working-directory: embedded-systems/hm-serial
run: |
uv sync --dev
- name: Test
working-directory: embedded/hm-serial
working-directory: embedded-systems/hm-serial
run: |
uv run poe test-coverage
- name: Upload coverage to Codecov
uses: codecov/[email protected]
with:
directory: embedded/hm-serial
directory: embedded-systems/hm-serial

pack-unpack-data-test:
name: Pack Unpack Data | Test
Expand All @@ -3221,23 +3221,23 @@ jobs:
with:
version: 0.5.14
enable-cache: true
cache-dependency-glob: embedded/pack-unpack-data/uv.lock
cache-dependency-glob: embedded-systems/pack-unpack-data/uv.lock
- name: Set up Python
uses: actions/[email protected]
with:
python-version-file: embedded/pack-unpack-data/pyproject.toml
python-version-file: embedded-systems/pack-unpack-data/pyproject.toml
- name: Install dependencies
working-directory: embedded/pack-unpack-data
working-directory: embedded-systems/pack-unpack-data
run: |
uv sync --dev
- name: Test
working-directory: embedded/pack-unpack-data
working-directory: embedded-systems/pack-unpack-data
run: |
uv run poe test-coverage
- name: Upload coverage to Codecov
uses: codecov/[email protected]
with:
directory: embedded/pack-unpack-data
directory: embedded-systems/pack-unpack-data

skypilot-test:
name: SkyPilot | Test
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ data-transformation/dbt/projects/*/logs/**/*
data-visualization/metabase/plugins/**/*
desktop-qt/CMakeLists.txt.user
digital-design/verilog/output/**/*
embedded/decode-can-data/data/**/*
embedded-systems/decode-can-data/data/**/*
hardware-in-the-loop/national-instruments/hm-tdms/data/**/*
hardware-in-the-loop/national-instruments/veristand/VeriStandZeroMQBridge/packages/**/*
hardware-in-the-loop/national-instruments/veristand/VeriStandZeroMQBridge/VeriStandZeroMQBridge/bin/**/*
Expand Down
2 changes: 1 addition & 1 deletion .markdownlint-cli2.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
"data-visualization/metabase/plugins",
"desktop-qt/CMakeLists.txt.user",
"digital-design/verilog/output",
"embedded/decode-can-data/data",
"embedded-systems/decode-can-data/data",
"hardware-in-the-loop/national-instruments/hm-tdms/data",
"hardware-in-the-loop/national-instruments/veristand/VeriStandZeroMQBridge/packages",
"hardware-in-the-loop/national-instruments/veristand/VeriStandZeroMQBridge/VeriStandZeroMQBridge/bin",
Expand Down
2 changes: 1 addition & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ data-visualization/grafana/hm-panel-plugin/.config
data-visualization/metabase/plugins
desktop-qt/CMakeLists.txt.user
digital-design/verilog/output
embedded/decode-can-data/data
embedded-systems/decode-can-data/data
hardware-in-the-loop/national-instruments/hm-tdms/data
hardware-in-the-loop/national-instruments/veristand/VeriStandZeroMQBridge/packages
hardware-in-the-loop/national-instruments/veristand/VeriStandZeroMQBridge/VeriStandZeroMQBridge/bin
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ AllCops:
- 'data-visualization/metabase/plugins/**/*'
- 'desktop-qt/CMakeLists.txt.user'
- 'digital-design/verilog/output/**/*'
- 'embedded/decode-can-data/data/**/*'
- 'embedded-systems/decode-can-data/data/**/*'
- 'hardware-in-the-loop/national-instruments/hm-tdms/data/**/*'
- 'hardware-in-the-loop/national-instruments/veristand/VeriStandZeroMQBridge/packages/**/*'
- 'hardware-in-the-loop/national-instruments/veristand/VeriStandZeroMQBridge/VeriStandZeroMQBridge/bin/**/*'
Expand Down
2 changes: 1 addition & 1 deletion .ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ exclude = [
"data-visualization/metabase/plugins",
"desktop-qt/CMakeLists.txt.user",
"digital-design/verilog/output",
"embedded/decode-can-data/data",
"embedded-systems/decode-can-data/data",
"hardware-in-the-loop/national-instruments/hm-tdms/data",
"hardware-in-the-loop/national-instruments/veristand/VeriStandZeroMQBridge/packages",
"hardware-in-the-loop/national-instruments/veristand/VeriStandZeroMQBridge/VeriStandZeroMQBridge/bin",
Expand Down
2 changes: 1 addition & 1 deletion .solhintignore
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ data-visualization/grafana/hm-panel-plugin/.config
data-visualization/metabase/plugins
desktop-qt/CMakeLists.txt.user
digital-design/verilog/output
embedded/decode-can-data/data
embedded-systems/decode-can-data/data
hardware-in-the-loop/national-instruments/hm-tdms/data
hardware-in-the-loop/national-instruments/veristand/VeriStandZeroMQBridge/packages
hardware-in-the-loop/national-instruments/veristand/VeriStandZeroMQBridge/VeriStandZeroMQBridge/bin
Expand Down
2 changes: 1 addition & 1 deletion .sqlfluffignore
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ data-visualization/grafana/hm-panel-plugin/.config
data-visualization/metabase/plugins
desktop-qt/CMakeLists.txt.user
digital-design/verilog/output
embedded/decode-can-data/data
embedded-systems/decode-can-data/data
hardware-in-the-loop/national-instruments/hm-tdms/data
hardware-in-the-loop/national-instruments/veristand/VeriStandZeroMQBridge/packages
hardware-in-the-loop/national-instruments/veristand/VeriStandZeroMQBridge/VeriStandZeroMQBridge/bin
Expand Down
2 changes: 1 addition & 1 deletion .stylelintignore
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ data-visualization/grafana/hm-panel-plugin/.config
data-visualization/metabase/plugins
desktop-qt/CMakeLists.txt.user
digital-design/verilog/output
embedded/decode-can-data/data
embedded-systems/decode-can-data/data
hardware-in-the-loop/national-instruments/hm-tdms/data
hardware-in-the-loop/national-instruments/veristand/VeriStandZeroMQBridge/packages
hardware-in-the-loop/national-instruments/veristand/VeriStandZeroMQBridge/VeriStandZeroMQBridge/bin
Expand Down
2 changes: 1 addition & 1 deletion .textlintignore
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ data-visualization/grafana/hm-panel-plugin/.config/**/*
data-visualization/metabase/plugins/**/*
desktop-qt/CMakeLists.txt.user
digital-design/verilog/output/**/*
embedded/decode-can-data/data/**/*
embedded-systems/decode-can-data/data/**/*
hardware-in-the-loop/national-instruments/hm-tdms/data/**/*
hardware-in-the-loop/national-instruments/veristand/VeriStandZeroMQBridge/packages/**/*
hardware-in-the-loop/national-instruments/veristand/VeriStandZeroMQBridge/VeriStandZeroMQBridge/bin/**/*
Expand Down
2 changes: 1 addition & 1 deletion .yamllint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ ignore: |
data-visualization/metabase/plugins
desktop-qt/CMakeLists.txt.user
digital-design/verilog/output
embedded/decode-can-data/data
embedded-systems/decode-can-data/data
hardware-in-the-loop/national-instruments/hm-tdms/data
hardware-in-the-loop/national-instruments/veristand/VeriStandZeroMQBridge/packages
hardware-in-the-loop/national-instruments/veristand/VeriStandZeroMQBridge/VeriStandZeroMQBridge/bin
Expand Down
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ lint-ansible:
lint-c-cpp-cpplint:
uv run poe lint-c-cpp-cpplint --repository=asterios/led-blinker --extensions=c,h --recursive asterios/led-blinker
uv run poe lint-c-cpp-cpplint --repository=compiler-infrastructure/llvm --extensions=cpp,hpp --recursive compiler-infrastructure/llvm
uv run poe lint-c-cpp-cpplint --repository=embedded/freertos --extensions=ino --recursive embedded/freertos
uv run poe lint-c-cpp-cpplint --repository=embedded-systems/freertos --extensions=ino --recursive embedded-systems/freertos
uv run poe lint-c-cpp-cpplint --repository=hm-kafka/kafka-client/kafka-c/avro-producer --extensions=c,h --recursive hm-kafka/kafka-client/kafka-c/avro-producer
uv run poe lint-c-cpp-cpplint --repository=matlab/call-c-function-in-matlab --extensions=c,h --recursive matlab/call-c-function-in-matlab
uv run poe lint-c-cpp-cpplint --repository=matlab/call-c-function-in-matlab --extensions=c,h --recursive matlab/call-c-function-in-matlab
Expand Down Expand Up @@ -363,9 +363,9 @@ static-type-check-python:
uv run poe static-type-check-python --package=data-visualization.grafana.hm-dashboard
uv run poe static-type-check-python --package=data-visualization.iads.iads-data-manager.iads-config-reader
uv run poe static-type-check-python --package=data-visualization.iads.iads-data-manager.iads-data-reader
uv run poe static-type-check-python --package=embedded.decode-can-data
uv run poe static-type-check-python --package=embedded.format-can-data
uv run poe static-type-check-python --package=embedded.hm-serial
uv run poe static-type-check-python --package=embedded-systems.decode-can-data
uv run poe static-type-check-python --package=embedded-systems.format-can-data
uv run poe static-type-check-python --package=embedded-systems.hm-serial
uv run poe static-type-check-python --package=hardware-in-the-loop.national-instruments.hm-pyvisa
uv run poe static-type-check-python --package=hardware-in-the-loop.national-instruments.hm-tdms
uv run poe static-type-check-python --package=hardware-in-the-loop.national-instruments.veristand.hm-veristand
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ The diagram illustrates the repository's architecture, which is considered overl
- **Verilog** - Hardware description language
- **VHDL** - Hardware description language

## Embedded, IoT, Hardware
## Embedded Systems

- **pySerial** - Serial communication library
- **cantools** - Controller Area Network (CAN) bus tools
Expand Down Expand Up @@ -978,7 +978,7 @@ OpenFOAM simulation results viewed by ParaView.

![Simscape screenshot](https://github.com/hongbo-miao/hongbomiao.com/assets/3375461/53574809-fe05-46c3-b2fa-633b5516b2e0)

## Embedded, IoT, Hardware
## Embedded Systems

### ASTERIOS - Real-Time, Safety-Critical Applications Development

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export default [
'data-visualization/metabase/plugins',
'desktop-qt/CMakeLists.txt.user',
'digital-design/verilog/output',
'embedded/decode-can-data/data',
'embedded-systems/decode-can-data/data',
'hardware-in-the-loop/national-instruments/hm-tdms/data',
'hardware-in-the-loop/national-instruments/veristand/VeriStandZeroMQBridge/packages',
'hardware-in-the-loop/national-instruments/veristand/VeriStandZeroMQBridge/VeriStandZeroMQBridge/bin',
Expand Down
Loading