Skip to content

Commit

Permalink
apply name rule change under hal dir in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
sksat committed Jul 21, 2023
1 parent 1c0d721 commit 809de55
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Docs/General/coding_rule.md
Original file line number Diff line number Diff line change
Expand Up @@ -355,28 +355,28 @@ XTX_
```
hal/
uart.h
./Common/
./Issl6uMobc/
./common/
./issl6u_mobc/
uart_issl6u_mobc.c <- 名前空間: UART
./HogeChipset/
./hoge_chipset/
uart_hoge_chipset.cpp <- 名前空間: UART_HOGE_CHIPSET
./Sils/
./sils/
uart_sils.c <- 名前空間: UART
```

2.のケース
```
hal/
flash.h
./Common/
./common/
flash_common.c <- 名前空間: FLASH
flash_common.h <- より細かく切り出したHW依存の関数を宣言
flash_hoge.c <- 名前空間: FLASH_HOGE(不都合があったら考える)
./Issl6uMobc/
./issl6u_mobc/
flash_issl6u_mobc.c <- 名前空間: FLASH
./HogeChipset/
./hoge_chipset/
flash_hoge_chipset.cpp <- 名前空間: FLASH_HOGE_CHIPSET
./Sils/
./sils/
flash_sils.c <- 名前空間: FLASH
```

Expand Down

0 comments on commit 809de55

Please sign in to comment.