Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Thomas

Pages: [1]
1
µTasker general / Feature suggestion: HTTP Response Header
« on: January 29, 2008, 12:20:13 PM »
Hi Mark,

Just want to suggest a future feature, HTTP Response Headers.

I think it could be nice in many situations to easily add HTTP Response Headers to files being transmitted from the web-server. For instance to instruct the client about cache control as some clients will cache pages depdending on settings and display outdated files. Or for instance to raise the "save file as" dialog for given files instead of displaying the file inside the browser or depend on the browser to interpret files correctly. Maybe implemented as a global default header with possibility for overriding for given files or criterias.

I've implemented what I need for my project in this regard though, but might be useful I think for more people in a general way.(?)

2
µTasker general / http.c. Not parsing form posts correctly
« on: October 19, 2007, 07:56:50 PM »
Hi!

It seems the parsing in http.c (SAM7X) of post packets is missing a few things. I have the form below. You start parsing by looking for "boundary=" but this string is not existing with text/plain encoding. If I try to use multipart/form-data the parsing exits prematurely later looking for "Content-Type:" which also don't exist.

It's no problem for me to implement what I need, but just wondering if an updated http.c file exists..? Always looking to save time..! ;D

Code: [Select]
<form action="*0Menu.htm" method="post" enctype="text/plain" >
Username:
<input type="text" name="user" size="8" maxlength="8">
<br>
Password:
<input type="password" name="password" size="8" maxlength="8">
<input type="submit" value="Log in">
</form>

3
µTasker general / Generating HTML (fnInsertString() in webInterface.c)
« on: October 15, 2007, 03:17:43 PM »
Hi!

I need to create a table consisting of about 5 columns and a maximum of 255 rows. Each row will be built from a total of about 64 bytes consisting of different parameters.

I've been looking into the webInterface a little bit now and wonder how this would be best to solve. I was thinking to just keep a template of one row containing all the html formatting and data place holders, and just fill out the neccessary data when called through fnInsertString(). Having a HTML file with 255 $vnn references..

But I wonder about size limitations. One complete row including all HTML formatting and data might be around 400bytes or so. How are the packets sent and split? Thinking about how to make a reasonably efficent transer. I see a reference to "dynamic HTML" but no implementation. What was the intention for that?

4
ATMELTM AT91SAM7X and AVR32 / How to debug uTasker from flash with IAR?
« on: September 26, 2007, 10:07:38 AM »
What are the necessary steps involved for downloading code to flash and debug from within IAR?

I downloaded an example from the Atmel site (BasicIAR-SAM7X256-IAR430A) that works fine, loads to flash and debugs fine.

http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3906
http://www.atmel.com/dyn/resources/prod_documents/BasicIAR-SAM7X256-IAR430A.zip

However I'm not sure why I cannot get IAR to download the uTasker project to flash. I started with the Release configuration and changed the linker to generate the debug file, under Debugger changed to use SAM7_FLASH.mac (from basic iar project), removed "suppress download" and checked "use flash loader(s)"

It displays the "downloading application" window but don't display the  "programming flash" window like the BasicIAR project.

Using IAR 4.42 and IAR(Segger) J-Link and uTasker 1.3SP1.

5
µTasker general / License conditions
« on: September 20, 2007, 07:57:44 AM »
If we purchase a project or full license what are the terms for upgrades? During the email support period? service packs? lifetime..?

6
Hi!

In the process of evaluating this platform and trying everything... I find that on the web pages on the administration page I cannot modify the bullets next to "Desired action", where default is "No action". So it's not possible to select for instance "Modify and save server settings". Tried with the simulator and the main target SAM7X with uTasker 1.3 SP1.

Anyone knows why?

Pages: [1]