Production Test Program (PTP) for the LPC4088 Experiment Base Board
Dependencies: EALib I2S LM75B SDFileSystem mbed
TestFileSystemSPI.cpp@7:48375cb50f3a, 2014-09-25 (annotated)
- Committer:
- embeddedartists
- Date:
- Thu Sep 25 07:17:44 2014 +0000
- Revision:
- 7:48375cb50f3a
- Parent:
- 2:2f4b7535ceb3
Fixed audio test volume issues and issues with the touch controller.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
embeddedartists | 2:2f4b7535ceb3 | 1 | /* |
embeddedartists | 2:2f4b7535ceb3 | 2 | * Copyright 2013 Embedded Artists AB |
embeddedartists | 2:2f4b7535ceb3 | 3 | * |
embeddedartists | 2:2f4b7535ceb3 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
embeddedartists | 2:2f4b7535ceb3 | 5 | * you may not use this file except in compliance with the License. |
embeddedartists | 2:2f4b7535ceb3 | 6 | * You may obtain a copy of the License at |
embeddedartists | 2:2f4b7535ceb3 | 7 | * |
embeddedartists | 2:2f4b7535ceb3 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
embeddedartists | 2:2f4b7535ceb3 | 9 | * |
embeddedartists | 2:2f4b7535ceb3 | 10 | * Unless required by applicable law or agreed to in writing, software |
embeddedartists | 2:2f4b7535ceb3 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
embeddedartists | 2:2f4b7535ceb3 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
embeddedartists | 2:2f4b7535ceb3 | 13 | * See the License for the specific language governing permissions and |
embeddedartists | 2:2f4b7535ceb3 | 14 | * limitations under the License. |
embeddedartists | 2:2f4b7535ceb3 | 15 | */ |
embeddedartists | 2:2f4b7535ceb3 | 16 | |
embeddedartists | 2:2f4b7535ceb3 | 17 | /****************************************************************************** |
embeddedartists | 2:2f4b7535ceb3 | 18 | * Includes |
embeddedartists | 2:2f4b7535ceb3 | 19 | *****************************************************************************/ |
embeddedartists | 2:2f4b7535ceb3 | 20 | |
embeddedartists | 2:2f4b7535ceb3 | 21 | #include "mbed.h" |
embeddedartists | 2:2f4b7535ceb3 | 22 | #include "TestFileSystemSPI.h" |
embeddedartists | 2:2f4b7535ceb3 | 23 | #include "SDFileSystem.h" |
embeddedartists | 2:2f4b7535ceb3 | 24 | |
embeddedartists | 2:2f4b7535ceb3 | 25 | /****************************************************************************** |
embeddedartists | 2:2f4b7535ceb3 | 26 | * Defines and typedefs |
embeddedartists | 2:2f4b7535ceb3 | 27 | *****************************************************************************/ |
embeddedartists | 2:2f4b7535ceb3 | 28 | |
embeddedartists | 2:2f4b7535ceb3 | 29 | |
embeddedartists | 2:2f4b7535ceb3 | 30 | /****************************************************************************** |
embeddedartists | 2:2f4b7535ceb3 | 31 | * Public Functions |
embeddedartists | 2:2f4b7535ceb3 | 32 | *****************************************************************************/ |
embeddedartists | 2:2f4b7535ceb3 | 33 | |
embeddedartists | 2:2f4b7535ceb3 | 34 | /* |
embeddedartists | 2:2f4b7535ceb3 | 35 | Prerequisites: |
embeddedartists | 2:2f4b7535ceb3 | 36 | |
embeddedartists | 2:2f4b7535ceb3 | 37 | - For this test to work jumpers JP1..JP6 on the LPC4088 Experiment Base Board |
embeddedartists | 2:2f4b7535ceb3 | 38 | must all be in positions 2-3, that is closest to the edge of the board. |
embeddedartists | 2:2f4b7535ceb3 | 39 | |
embeddedartists | 2:2f4b7535ceb3 | 40 | - The uSD card must be formatted as FAT or FAT32, NTFS will not work. |
embeddedartists | 2:2f4b7535ceb3 | 41 | |
embeddedartists | 2:2f4b7535ceb3 | 42 | - This test expects a file with the name message.txt to exist in the |
embeddedartists | 2:2f4b7535ceb3 | 43 | root folder on the uSD card. The file must be at least 10 bytes in |
embeddedartists | 2:2f4b7535ceb3 | 44 | size and the first bytes must be eatest2014 |
embeddedartists | 2:2f4b7535ceb3 | 45 | */ |
embeddedartists | 2:2f4b7535ceb3 | 46 | |
embeddedartists | 2:2f4b7535ceb3 | 47 | bool TestFileSystemSPI::runTest() { |
embeddedartists | 2:2f4b7535ceb3 | 48 | // The LPC4088 Experiment Base Board does not have the CardDetect signal |
embeddedartists | 2:2f4b7535ceb3 | 49 | // available so it must be set to NC here to work. |
embeddedartists | 2:2f4b7535ceb3 | 50 | SDFileSystem spifs(p5, p6, p7, p8, "spi"); // mosi, miso, sclk, cs |
embeddedartists | 2:2f4b7535ceb3 | 51 | |
embeddedartists | 2:2f4b7535ceb3 | 52 | // This test expects a file with the name message.txt to exist in the |
embeddedartists | 2:2f4b7535ceb3 | 53 | // root folder on the uSD card. The file must be at least 10 bytes in |
embeddedartists | 2:2f4b7535ceb3 | 54 | // size and the first bytes must be eatest2014. |
embeddedartists | 2:2f4b7535ceb3 | 55 | FILE* fp = fopen("/spi/message.txt", "r"); |
embeddedartists | 2:2f4b7535ceb3 | 56 | |
embeddedartists | 2:2f4b7535ceb3 | 57 | if (fp != NULL) { |
embeddedartists | 2:2f4b7535ceb3 | 58 | char buf[20]; |
embeddedartists | 2:2f4b7535ceb3 | 59 | int num = fread(buf, 1, sizeof(buf), fp); |
embeddedartists | 2:2f4b7535ceb3 | 60 | if (num >= 10) { |
embeddedartists | 2:2f4b7535ceb3 | 61 | buf[10] = '\0'; |
embeddedartists | 2:2f4b7535ceb3 | 62 | if (strcmp(buf, "eatest2014") == 0) { |
embeddedartists | 2:2f4b7535ceb3 | 63 | printf("SPI SD Card works!\n"); |
embeddedartists | 2:2f4b7535ceb3 | 64 | fclose(fp); |
embeddedartists | 2:2f4b7535ceb3 | 65 | return true; |
embeddedartists | 2:2f4b7535ceb3 | 66 | } |
embeddedartists | 2:2f4b7535ceb3 | 67 | printf("Invalid data read from /spi/message.txt\n"); |
embeddedartists | 2:2f4b7535ceb3 | 68 | } |
embeddedartists | 2:2f4b7535ceb3 | 69 | printf("Failed to read >= 10 bytes from /spi/message.txt\n"); |
embeddedartists | 2:2f4b7535ceb3 | 70 | } |
embeddedartists | 2:2f4b7535ceb3 | 71 | printf("Failed to open /spi/message.txt\n"); |
embeddedartists | 2:2f4b7535ceb3 | 72 | return false; |
embeddedartists | 2:2f4b7535ceb3 | 73 | } |
embeddedartists | 2:2f4b7535ceb3 | 74 | |
embeddedartists | 2:2f4b7535ceb3 | 75 |