I want to access my mobile phone,connected through its USB cable, from a C program to send AT commands to it.Can sumbody pls help me
champnim 6 Light Poster
Recommended Answers
Jump to Post> (an aside to Salem, or anyone else: where are all these Turbo-C people coming from?
http://cboard.cprogramming.com/showthread.php?t=79702
Start at reply #8
Jump to PostSorry, but I'm not going to tolerate you mashing of the English language, so I'm going to ignore you instead.
Jump to PostWell let me assure you I have enough command over the English language but its just that my generation is probably more used to converse in the "SMS lingo". If you have a problem understanding my language there is a more gracious way of saying so rather than adopting a …
Jump to PostHow about something like this:
void Dial(char* number) { // the code you had in main goes here } int main() { char phone[16]; char answer[2]; while(true) { printf("Dial a number (Y/N)\n"); fgets(answer,sizeof(answer),stdin); if( answer[0] == 'n' || answer[0] == 'N') break; printf("Enter phone number\n"); fgets(phone,sizeof(phone),stdin); Dial(phone); …
Jump to Post>>program would remain in the loop for as long as the call proceeds
Do you mean that while loop that I posted? If not, then what loop do you mean>>is there a 'cheaper' way out?
Probably not. I assume there is a lot of other code that you …
All 27 Replies
Salem 5,265 Posting Sage
champnim 6 Light Poster
Salem 5,265 Posting Sage
champnim 6 Light Poster
Salem 5,265 Posting Sage
jephthah 1,888 Posting Maven
Salem 5,265 Posting Sage
jephthah commented: ah.. how illuminating. {Max} declared what I suspected, but could not say. +3
champnim 6 Light Poster
Salem 5,265 Posting Sage
jephthah 1,888 Posting Maven
champnim 6 Light Poster
Salem 5,265 Posting Sage
jephthah commented: word. +3
champnim 6 Light Poster
jephthah 1,888 Posting Maven
champnim 6 Light Poster
Ancient Dragon 5,243 Achieved Level 70 Team Colleague Featured Poster
jephthah 1,888 Posting Maven
champnim 6 Light Poster
mitrmkar 1,056 Posting Virtuoso
champnim 6 Light Poster
Ancient Dragon 5,243 Achieved Level 70 Team Colleague Featured Poster
champnim 6 Light Poster
Ancient Dragon 5,243 Achieved Level 70 Team Colleague Featured Poster
champnim 6 Light Poster
Ancient Dragon 5,243 Achieved Level 70 Team Colleague Featured Poster
champnim 6 Light Poster
champnim 6 Light Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.