Author |
Message |
Topic: signed float |
Johann17943
Replies: 4
Views: 6505
|
Forum: General CCS C Discussion Posted: Tue May 13, 2014 8:44 am Subject: signed float |
Hi!
Thanks a lot!
I have a quite old printed manual, but I'm using the Help-button from the Compiler. There is no range given for the float32.
I think, I should update my Compiler :-)
Thanks aga ... |
Topic: signed float |
Johann17943
Replies: 4
Views: 6505
|
Forum: General CCS C Discussion Posted: Mon May 12, 2014 2:53 pm Subject: signed float |
Sorry, but I have not found something in the Forum, but perhaps somebody can help very quickliy
I Need to define a signed float data type (for example -1.0769) and don't know how (signed float will n ... |
Topic: string operation |
Johann17943
Replies: 8
Views: 7919
|
Forum: General CCS C Discussion Posted: Sat Nov 24, 2012 8:26 am Subject: string operation |
Thanks!
I was searching but, as you say, there are many threads. This helped me to save a lot of time.
Regards,
Johann |
Topic: string operation |
Johann17943
Replies: 8
Views: 7919
|
Forum: General CCS C Discussion Posted: Thu Nov 22, 2012 1:57 pm Subject: string operation |
Hi Mike,
thanks, but how to declare the arrays (strings)? And where to store them (RAM, EEPROM, Program Memory? The strings should not have all the same length (min. 3 characters, max. 16). Is that ... |
Topic: string operation |
Johann17943
Replies: 8
Views: 7919
|
Forum: General CCS C Discussion Posted: Thu Nov 22, 2012 11:16 am Subject: string operation |
Hi there!
I want to use a string array to use different language for printf(printlcd..)-function. My idea is to put all strings that I use in a 2-dimensional array, where the first is the English str ... |
Topic: MSD-Bootloader for PIC18F4550 |
Johann17943
Replies: 3
Views: 5727
|
Forum: General CCS C Discussion Posted: Sat Jan 28, 2012 4:06 am Subject: MSD-Bootloader for PIC18F4550 |
Hi,
nobody could help me?
I have to build a hex file, that has no config bits, no eeprom, only the application code starting from adress 0x2400 and containing the full range of memory of th ... |
Topic: MSD-Bootloader for PIC18F4550 |
Johann17943
Replies: 3
Views: 5727
|
Forum: General CCS C Discussion Posted: Sat Jan 21, 2012 6:19 am Subject: MSD-Bootloader |
Sorry, forget to say that I'm using the MSD-bootloader from scene-double |
Topic: MSD-Bootloader for PIC18F4550 |
Johann17943
Replies: 3
Views: 5727
|
Forum: General CCS C Discussion Posted: Sat Jan 21, 2012 6:16 am Subject: MSD-Bootloader for PIC18F4550 |
Hi!
I'm trying to use the MSD-bootloader for my application with a PIC18F4550.
I have done all according to the MSD application, the bootloader is loaded and if I connect the board to the USB of m ... |
Topic: How to convert dec. to hex. in pic16f819 ? |
Johann17943
Replies: 4
Views: 7554
|
Forum: General CCS C Discussion Posted: Sat Dec 11, 2010 5:51 am Subject: How to convert dec. to hex. in pic16f819 ? |
Hi sorasit46
The function for dec to hex is:
int dec_hex(int zahl);
{
int einer,zehner,ergebnis;
ergebnis=0;
zehner=zahl/10;
einer=zahl-(zehner*10);
ergebnis=(zehn ... |
Topic: I2C changing slave address |
Johann17943
Replies: 4
Views: 8620
|
Forum: General CCS C Discussion Posted: Sat Dec 11, 2010 5:37 am Subject: I2C changing slave address |
Hello Ttelmah,
thanks for so quick answer!
Perhaps I should explain a little more detailed my project, for understanding.
The master and slave is not on the same board. I have one master device ( ... |
Topic: I2C changing slave address |
Johann17943
Replies: 4
Views: 8620
|
Forum: General CCS C Discussion Posted: Sat Dec 11, 2010 4:04 am Subject: I2C changing slave address |
Hello!
I have a Pic to Pic bus system with one master (18F4550) and more slaves (16F1826) connected via I2C.
Is it possible to change the address of the slave by software?
My idea is to have all th ... |
|