Posted on May 28, 2013 at 01:00Hi, I'm using this Board: http://www.keil.com/support/man/docs/mcbstm32f200/mcbstm32f200_to_memory.htm to build up a small webserver interface. I want to put the website data on the NAND-Flash. But what is the Adress o...
Posted on August 31, 2012 at 20:51
Hi,
at the moment I'm using the following code to recieve a byte:
char
ReceivedData = NULL;
void
main() {
.
.
.
while
(1){
/* Wait until a byte is received */
while
(USART_GetFlagStatus(USART...
Posted on May 22, 2012 at 23:54Hi, is it allowed to upload the firmware of my custom inemo application (sportmeter), which based on the SDK of STmicro to sourceforge ? WR Alex
Posted on April 24, 2012 at 15:38Hi, ist their any iNemo Project already ported in KEIL ? I'm searching for a solution to use the IAR Project in Keil but I always failing when i trying it by my self. with regards Sam
Posted on September 02, 2012 at 04:46
works perfect! thank you !
one last question. I just want to recieve my 248 bytes now. I modified the function a little bit. And it works so far when im sending a file with exact 248bytes.
#define...
Posted on September 02, 2012 at 01:29
hi clive,
I mean, how can I write my recieved data
RXBUFF[248]
to my variables.
Because I recieve 60x int32_t ...
and RXBUFFER containts only bytes. like 2F00 = uint16 -> 47
...
Posted on September 01, 2012 at 02:08
Thank you clive for helping me,
I implemented your code in a function:
void
GetScrewPositions()
{
printf
(
''ready to get Data
''
);
int
j =0;
while
(1)
{
//Wait until a byte is received
whi...
Posted on August 31, 2012 at 22:41
I want to make an easy loop back function and after implementing ur code it looks like this but i doesnt work.
while
(1)
{
//Bytes RECV ( RXBUFF[248] )
/* Wait until a byte is received */
while
(USAR...
Posted on August 31, 2012 at 22:15Thank you clive, can you show me how i can ''printf'' (loopback) the Array to check that everything transmitted complete ? printf(''Data Recieved: %c'', RXBUFF); doesnt work