ca13734bf0
Add kernel (Cortex-M0/M3/M4, Tricore, S32K, RISC-V ports), drivers, middleware (CAN stack, diagnostics, safety), applications, board support, build/test tooling, and documentation.
36 lines
615 B
Markdown
36 lines
615 B
Markdown
|
|
## .gitea/ISSUE_TEMPLATE/feature_request.md
|
|
|
|
```markdown
|
|
---
|
|
name: Feature Request
|
|
about: Suggest an idea for this project
|
|
title: '[FEATURE] '
|
|
labels: enhancement
|
|
assignees: ''
|
|
---
|
|
|
|
## Feature Description
|
|
|
|
<!-- A clear and concise description of the feature -->
|
|
|
|
## Problem Statement
|
|
|
|
<!-- What problem does this feature solve? -->
|
|
|
|
## Proposed Solution
|
|
|
|
<!-- How should this feature work? -->
|
|
|
|
## Alternative Solutions
|
|
|
|
<!-- Are there alternative solutions you've considered? -->
|
|
|
|
## API Design
|
|
|
|
<!-- If applicable, provide proposed API design -->
|
|
|
|
```c
|
|
// Proposed API
|
|
KernelStatus_t new_feature_function(void);
|