| 329 | } |
| 330 | |
| 331 | int CrossPointSettings::getRefreshFrequency() const { |
| 332 | switch (refreshFrequency) { |
| 333 | case REFRESH_1: |
| 334 | return 1; |
| 335 | case REFRESH_5: |
| 336 | return 5; |
| 337 | case REFRESH_10: |
| 338 | return 10; |
| 339 | case REFRESH_15: |
| 340 | default: |
| 341 | return 15; |
| 342 | case REFRESH_30: |
| 343 | return 30; |
| 344 | } |
| 345 | } |
| 346 | |
| 347 | int CrossPointSettings::getReaderFontId() const { |
| 348 | // Check SD card font first |
no outgoing calls
no test coverage detected