Author |
Message |
Topic: isalpha() for strings ? |
TYSCSTOM
Replies: 8
Views: 11365
|
Forum: General CCS C Discussion Posted: Thu Jul 08, 2010 2:04 pm Subject: success |
collink - the example works great for my needs, even better than that, I now understand how it works, and have learned something.
I will be using more pointers in my coding from now on.
thanks f ... |
Topic: isalpha() for strings ? |
TYSCSTOM
Replies: 8
Views: 11365
|
Forum: General CCS C Discussion Posted: Wed Jul 07, 2010 11:30 am Subject: thanks |
Wayne - thanks for the feedback.
int1 is_alpha_string(char *input) {
int1 result;
result = 0;
while (*input && !result)
{
result = isal ... |
Topic: isalpha() for strings ? |
TYSCSTOM
Replies: 8
Views: 11365
|
Forum: General CCS C Discussion Posted: Tue Jul 06, 2010 7:51 pm Subject: isalpha() for strings ? |
I am sure this is a simple question, am I am just looking for a simple answer.
I need to read in a string up to 4 digits long and only accept the string as long as none of the characters are alphan ... |
Topic: PWM Timer Calculations Spreadsheet |
TYSCSTOM
Replies: 2
Views: 36961
|
Forum: Code Library Posted: Sat Jul 03, 2010 10:13 am Subject: PWM Timer Calculations Spreadsheet |
Great work!
I plan on using this for several projects in the future.
Having run through several scenario, it looks accurate to me. |
Topic: INTERNAL EEPROM EXAMPLE |
TYSCSTOM
Replies: 7
Views: 9826
|
Forum: General CCS C Discussion Posted: Mon Jun 07, 2010 12:17 pm Subject: INTERNAL EEPROM EXAMPLE |
Silly Me,
The 18F4610 has no intermal eeprom!
So how could you have compiled with no eeprom for the read and write functions to point to????
The data EE start is still valid, there is just no ... |
Topic: INTERNAL EEPROM EXAMPLE |
TYSCSTOM
Replies: 7
Views: 9826
|
Forum: General CCS C Discussion Posted: Sun Jun 06, 2010 6:33 pm Subject: INTERNAL EEPROM EXAMPLE |
Yes, I still have a problem compiling.
This only happens when I change the target from 18f452 to 18F4610.
Just as you have done I copied and saved the EX_INTEE file under a new name and tried di ... |
Topic: INTERNAL EEPROM EXAMPLE |
TYSCSTOM
Replies: 7
Views: 9826
|
Forum: General CCS C Discussion Posted: Fri Jun 04, 2010 1:01 pm Subject: INTERNAL EEPROM EXAMPLE |
I have done the same, but still have compiler issues.
I am not using MPLAB though. |
Topic: INTERNAL EEPROM EXAMPLE |
TYSCSTOM
Replies: 7
Views: 9826
|
Forum: General CCS C Discussion Posted: Thu Jun 03, 2010 2:07 pm Subject: INTERNAL EEPROM EXAMPLE |
This is my first time using the internal eeprom functions in CCS.
I have tried the EX_INTEE and tried to compile with the following errors.
Undefined identifier read_eeprom
Undefined identifier w ... |
|