Introduce HiFi E.T MA9 port.

Change-Id: I79aadc958fd5222f26f91ed127f8c6fb2c465dc2
This commit is contained in:
Andrew Ryabinin 2013-04-15 09:51:22 +04:00
parent 3fd25dcbed
commit fa4e1baa83
25 changed files with 1441 additions and 5 deletions

View file

@ -132,6 +132,8 @@ static inline bool card_detect_target(void)
return !(GPIO_PCDR & 0x80);
#elif defined(HM60X) || defined(HM801)
return !(GPIO_PFDR & (1<<2));
#elif defined(MA9)
return (GPIO_PCDR & 0x80);
#else
#error "Unknown target"
#endif