Changeset 555:77c3a38a2218
- Timestamp:
- 06/01/08 00:15:17 (7 months ago)
- Author:
- David Anderson <dave@…>
- Branch:
- default
- Message:
-
Fix the build and replace additions with bitwise ORs.
The whitespace removal change somehow also amputated the trailing + signs.
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r551
|
r555
|
|
| 66 | 66 | * there is data available to send. |
| 67 | 67 | */ |
| 68 | | *AT91C_SSC_TCMR = (AT91C_SSC_CKS_DIV |
| 69 | | AT91C_SSC_CKO_CONTINOUS |
| | 68 | *AT91C_SSC_TCMR = (AT91C_SSC_CKS_DIV | |
| | 69 | AT91C_SSC_CKO_CONTINOUS | |
| 70 | 70 | AT91C_SSC_START_CONTINOUS); |
| 71 | 71 | |
| … |
… |
|
| 75 | 75 | */ |
| 76 | 76 | *AT91C_SSC_TFMR = |
| 77 | | 31 + AT91C_SSC_DATDEF + AT91C_SSC_MSBF + (7 << 8); |
| | 77 | 31 | AT91C_SSC_DATDEF | AT91C_SSC_MSBF | (7 << 8); |
| 78 | 78 | |
| 79 | 79 | /* Idle the output data pin of the SSC. The value on the pin will |