{"id":45779827,"url":"https://github.com/flipperdevices/rk3576-linux-tests","last_synced_at":"2026-02-26T11:00:00.828Z","repository":{"id":315313855,"uuid":"1052368269","full_name":"flipperdevices/rk3576-linux-tests","owner":"flipperdevices","description":"Tests set for RK3576 boards","archived":false,"fork":false,"pushed_at":"2025-12-11T19:03:22.000Z","size":145,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"dev","last_synced_at":"2025-12-12T16:20:59.739Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/flipperdevices.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-08T00:13:04.000Z","updated_at":"2025-12-11T19:03:25.000Z","dependencies_parsed_at":"2025-09-17T22:55:07.760Z","dependency_job_id":"0542ff19-1ebe-477e-8cc2-2b332799e026","html_url":"https://github.com/flipperdevices/rk3576-linux-tests","commit_stats":null,"previous_names":["flipperdevices/rk3576-linux-tests"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/flipperdevices/rk3576-linux-tests","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flipperdevices%2Frk3576-linux-tests","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flipperdevices%2Frk3576-linux-tests/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flipperdevices%2Frk3576-linux-tests/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flipperdevices%2Frk3576-linux-tests/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/flipperdevices","download_url":"https://codeload.github.com/flipperdevices/rk3576-linux-tests/tar.gz/refs/heads/dev","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flipperdevices%2Frk3576-linux-tests/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29856790,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-26T08:51:08.701Z","status":"ssl_error","status_checked_at":"2026-02-26T08:50:19.607Z","response_time":89,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-02-26T10:59:59.500Z","updated_at":"2026-02-26T11:00:00.732Z","avatar_url":"https://github.com/flipperdevices.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RK3576 Board Test Suite\n\nComprehensive test suite for Radxa 4D board based on Rockchip RK3576 SoC. Designed for measuring various subsystems performance and power consumption in standby mode.\n\n## Features\n\n- **Temperature Monitoring**: Continuous temperature monitoring with interactive HTML reports\n- **System Information Logging**: Board model, kernel version, thermal governors\n- **Modular Design**: Separate modules for each test type\n- **Interactive Reports**: Zoomable graphs using Plotly\n- **Lightweight Tests**: Designed for minimal power consumption during testing\n\n## Prerequisites\n\n```bash\n# Install required packages\nsudo apt-get update\nsudo apt-get install -y lm-sensors python3 python3-pip bc\n\n# Install Python dependencies\npip3 install pandas plotly\n```\n\n## Usage\n\n### Basic Usage\n\n```bash\n# Run all tests (default 60 minutes)\n./start-tests.sh\n\n# Run specific test\n./start-tests.sh --temperature\n\n# Set custom duration (in minutes)\n./start-tests.sh --temperature --time 120\n\n# View help\n./start-tests.sh --help\n```\n\n### Available Options\n\n- `--all` - Run all tests (default)\n- `--temperature` - Run temperature monitoring test\n- `--power` - Run power consumption test (placeholder)\n- `--cpu` - Run CPU performance test (placeholder)\n- `--gpu` - Run GPU performance test (placeholder)\n- `--network` - Run network performance test (placeholder)\n- `--disk` - Run disk I/O test (placeholder)\n- `--time MIN` - Set test duration in minutes (default: 60)\n\n## Test Modules\n\n### Temperature Monitoring (Implemented)\n- Collects temperature data every 0.5 seconds\n- Supports both `sensors` command and direct thermal zone reading\n- Generates interactive HTML report with:\n  - Zoomable temperature graphs\n  - Statistics (min, max, average, std deviation)\n  - Time range selection\n  - Multiple sensor support\n\n### Other Modules (Placeholders)\n- **Power**: Future power consumption monitoring\n- **CPU**: Future CPU benchmark tests\n- **GPU**: Future GPU performance tests\n- **Network**: Future network throughput tests\n- **Disk**: Future disk I/O benchmarks\n\n## Output Structure\n\n```\nresults/\n└── test_run_YYYYMMDD_HHMMSS/\n    ├── system_info.txt          # System information and configuration\n    ├── temperature_data.csv      # Raw temperature data\n    └── temperature_report.html   # Interactive temperature report\n```\n\n## System Information Logged\n\n- Board model from `/proc/device-tree/model`\n- Hostname and kernel version\n- Linux distribution (via `lsb_release`)\n- Thermal governor policies\n- CPU information\n- Memory information\n\n## Temperature Report Features\n\nThe generated HTML report includes:\n- Interactive graph with zoom and pan capabilities\n- Time range selector (1m, 5m, 30m, 1h, All)\n- Hover tooltips with precise values\n- Temperature statistics table\n- Professional styling with responsive design\n\n## Development Status\n\n✅ **Implemented:**\n- Main test orchestration script\n- Temperature monitoring module\n- HTML report generation with Plotly\n- System information logging\n\n🚧 **Planned:**\n- Power consumption monitoring\n- CPU stress tests and benchmarks\n- GPU performance tests\n- Network throughput tests\n- Disk I/O benchmarks\n- NPU performance tests\n\n## License\n\nThis test suite is provided as-is for testing RK3576-based boards.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflipperdevices%2Frk3576-linux-tests","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflipperdevices%2Frk3576-linux-tests","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflipperdevices%2Frk3576-linux-tests/lists"}