-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
100 additions
and
50 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
pub const DRV_DIR_GPIO_ADDR: u32 = 0x7FFF_8000; | ||
pub const DRV_TIMER_FRONT_RIGHT_ADDR: u32 = 0x4000_0000; | ||
pub const DRV_TIMER_FRONT_LEFT_ADDR: u32 = 0x4001_0000; | ||
pub const DRV_TIMER_BACK_RIGHT_ADDR: u32 = 0x4002_0000; | ||
pub const DRV_TIMER_BACK_LEFT_ADDR: u32 = 0x4003_0000; | ||
pub const DRV_DIR_GPIO_ADDR: u32 = 0x4001_8000; | ||
pub const DRV_TIMER_FRONT_RIGHT_ADDR: u32 = 0x4002_0000; | ||
pub const DRV_TIMER_FRONT_LEFT_ADDR: u32 = 0x4003_0000; | ||
pub const DRV_TIMER_BACK_RIGHT_ADDR: u32 = 0x4004_0000; | ||
pub const DRV_TIMER_BACK_LEFT_ADDR: u32 = 0x4005_0000; | ||
|
||
pub const GANTRY_DIR1_ADDR: u32 = 0x4004_0000; | ||
pub const GANTRY_DIR2_ADDR: u32 = 0x4005_0000; | ||
pub const GANTRY_DIR3_ADDR: u32 = 0x4006_0000; | ||
pub const GANTRY_DIR4_ADDR: u32 = 0x4007_0000; | ||
pub const GANTRY_DIR5_ADDR: u32 = 0x4008_0000; | ||
pub const GANTRY_RESET_ADDR: u32 = 0x4009_0000; | ||
pub const GANTRY_STEP1_ADDR: u32 = 0x400A_0000; | ||
pub const GANTRY_STEP2_ADDR: u32 = 0x400B_0000; | ||
pub const GANTRY_STEP3_ADDR: u32 = 0x400C_0000; | ||
pub const GANTRY_STEP4_ADDR: u32 = 0x400D_0000; | ||
pub const GANTRY_STEP5_ADDR: u32 = 0x400E_0000; | ||
pub const GANTRY_DIR1_ADDR: u32 = 0x4006_0000; | ||
pub const GANTRY_DIR2_ADDR: u32 = 0x4007_0000; | ||
pub const GANTRY_DIR3_ADDR: u32 = 0x4008_0000; | ||
pub const GANTRY_DIR4_ADDR: u32 = 0x4009_0000; | ||
pub const GANTRY_DIR5_ADDR: u32 = 0x400A_0000; | ||
pub const GANTRY_RESET_ADDR: u32 = 0x400B_0000; | ||
pub const GANTRY_STEP1_ADDR: u32 = 0x400C_0000; | ||
pub const GANTRY_STEP2_ADDR: u32 = 0x400D_0000; | ||
pub const GANTRY_STEP3_ADDR: u32 = 0x400E_0000; | ||
pub const GANTRY_STEP4_ADDR: u32 = 0x400F_0000; | ||
pub const GANTRY_STEP5_ADDR: u32 = 0x4010_0000; | ||
|
||
pub const LED_BRAKELIGHT: u32 = 0x400F_0000; | ||
pub const LED_FRONT_LOWER: u32 = 0x4010_0000; | ||
pub const LED_FRONT_UPPER: u32 = 0x4011_0000; | ||
pub const LED_WORKCELL: u32 = 0x4012_0000; | ||
pub const LED_BRAKELIGHT: u32 = 0x4011_0000; | ||
pub const LED_FRONT_LOWER: u32 = 0x4012_0000; | ||
pub const LED_FRONT_UPPER: u32 = 0x4013_0000; | ||
pub const LED_WORKCELL: u32 = 0x4014_0000; |