summaryrefslogtreecommitdiffstats
path: root/src/target/firmware/apps
diff options
context:
space:
mode:
authorThomas Waldmann2011-01-11 19:38:59 +0100
committerSteve Markgraf2011-01-11 19:53:56 +0100
commitbe9ea273b38167c00ca1e392c60eb794178232d5 (patch)
treed5c07e31007b516b05ca06080067fe0e444d1bc5 /src/target/firmware/apps
parentdocumentation: fix some typos (diff)
downloadosmocom-be9ea273b38167c00ca1e392c60eb794178232d5.tar.gz
osmocom-be9ea273b38167c00ca1e392c60eb794178232d5.tar.xz
osmocom-be9ea273b38167c00ca1e392c60eb794178232d5.zip
fixed typos in comments
Signed-off-by: Steve Markgraf <steve@steve-m.de>
Diffstat (limited to 'src/target/firmware/apps')
-rw-r--r--src/target/firmware/apps/hello_world/main.c2
-rw-r--r--src/target/firmware/apps/l1test/main.c4
-rw-r--r--src/target/firmware/apps/layer1/main.c2
-rwxr-xr-xsrc/target/firmware/apps/simtest/main.c12
4 files changed, 10 insertions, 10 deletions
diff --git a/src/target/firmware/apps/hello_world/main.c b/src/target/firmware/apps/hello_world/main.c
index 14b09b7..5e3ed85 100644
--- a/src/target/firmware/apps/hello_world/main.c
+++ b/src/target/firmware/apps/hello_world/main.c
@@ -85,7 +85,7 @@ int main(void)
keypad_set_handler(&key_handler);
- /* Dump clock config aftee PLL set */
+ /* Dump clock config after PLL set */
calypso_clk_dump();
puts(hr);
diff --git a/src/target/firmware/apps/l1test/main.c b/src/target/firmware/apps/l1test/main.c
index a800161..97bc528 100644
--- a/src/target/firmware/apps/l1test/main.c
+++ b/src/target/firmware/apps/l1test/main.c
@@ -120,7 +120,7 @@ static void l1test_state_change(enum l1test_state new_state)
}
}
-/* completion call-back for the L1 Sync Pwer Measurement */
+/* completion call-back for the L1 Sync Power Measurement */
static void l1s_signal_cb(struct l1_signal *sig)
{
uint16_t i, next_arfcn;
@@ -176,7 +176,7 @@ int main(void)
keypad_set_handler(&key_handler);
- /* Dump clock config aftee PLL set */
+ /* Dump clock config after PLL set */
calypso_clk_dump();
puts(hr);
diff --git a/src/target/firmware/apps/layer1/main.c b/src/target/firmware/apps/layer1/main.c
index 393f69e..d918145 100644
--- a/src/target/firmware/apps/layer1/main.c
+++ b/src/target/firmware/apps/layer1/main.c
@@ -65,7 +65,7 @@ int main(void)
keypad_set_handler(&key_handler);
- /* Dump clock config aftee PLL set */
+ /* Dump clock config after PLL set */
calypso_clk_dump();
puts(hr);
diff --git a/src/target/firmware/apps/simtest/main.c b/src/target/firmware/apps/simtest/main.c
index f3fa89f..47ea88f 100755
--- a/src/target/firmware/apps/simtest/main.c
+++ b/src/target/firmware/apps/simtest/main.c
@@ -71,7 +71,7 @@ static void myHexdump(uint8_t *data, int len)
#define SIM_UPDATE_RECORD 0xDC /* Write record of a record based file */
#define SIM_SEEK 0xA2 /* Seek in a record based file */
#define SIM_INCREASE 0x32 /* Increase a record in a record based file */
-#define SIM_VERIFY_CHV 0x20 /* Authenicate with card (enter pin) */
+#define SIM_VERIFY_CHV 0x20 /* Authenticate with card (enter pin) */
#define SIM_CHANGE_CHV 0x24 /* Change pin */
#define SIM_DISABLE_CHV 0x26 /* Disable pin so that no authentication is needed anymore */
#define SIM_ENABLE_CHV 0x28 /* Enable pin, authentication is now needed again */
@@ -83,7 +83,7 @@ static void myHexdump(uint8_t *data, int len)
#define SIM_GET_RESPONSE 0xC0 /* Get the response of a command from the card */
/* File identifiers (filenames)
- The file identifiers are the standartized file identfiers mentiond in the
+ The file identifiers are the standardized file identifiers mentioned in the
GSM-11-11 specification. */
#define SIM_MF 0x3F00
#define SIM_EF_ICCID 0x2FE2
@@ -159,7 +159,7 @@ uint16_t sim_readbinary(uint8_t offset_high, uint8_t offset_low, uint8_t length,
-/* FIXME: We need proper calibrated delay loops at some point! */
+/* FIXME: We need properly calibrated delay loops at some point! */
void delay_us(unsigned int us)
{
volatile unsigned int i;
@@ -201,8 +201,8 @@ void do_sim_test(void)
puts("----------------SIMTEST----8<-----------------\n");
- /* Initalize Sim-Controller driver */
- puts("Initalizing driver:\n");
+ /* Initialize Sim-Controller driver */
+ puts("Initializing driver:\n");
calypso_sim_init();
/* Power up sim and display ATR */
@@ -288,7 +288,7 @@ int main(void)
keypad_set_handler(&key_handler);
- /* Dump clock config aftee PLL set */
+ /* Dump clock config after PLL set */
calypso_clk_dump();
puts(hr);