Re: [fpc-pascal] Connect to 'https://...' url with fphttpclient ?

2017-01-22 Thread fredvs
Ooops, in previous mail, please read this: Hello. Is it possible to connect with 'https:// files with fphttpclient ? For example, I can access this: http://broadcast.infomaniak.net:80/alouette-high.mp3 but not this: https://sites.google.com/site/fredvsbinaries/test.mp3 Fre;D -

[fpc-pascal] Deleting 'Nonexistent' files under windows

2017-01-22 Thread Rolf Grunsky
Is it possible to access files that have path lengths too long to access from explorer through Windows API from Pascal? I keep ending up with these very long file names which then I can not access. It seems that Windows will create the files, usually by copying the files from another source

[fpc-pascal] Connect to 'https://...' url with fphttpclient ?

2017-01-22 Thread fredvs
Hello. Is it possible to connect with 'https:// files with fphttpclient ? For example, I can access this: http://broadcast.infomaniak.net:80/alouette-high.mp3 but not this: https://github.com/fredvs/uos/blob/master/examples/sound/test.mp3 Thanks. Fre;D - Many thanks ;-) -- View this

Re: [fpc-pascal] Connect to 'https://...' url with fphttpclient ?

2017-01-22 Thread Michael Van Canneyt
On Sun, 22 Jan 2017, fredvs wrote: Hello. Is it possible to connect with 'https:// files with fphttpclient ? For example, I can access this: http://broadcast.infomaniak.net:80/alouette-high.mp3 but not this: https://github.com/fredvs/uos/blob/master/examples/sound/test.mp3 It is

Re: [fpc-pascal] fpc for ARM on STM32F103

2017-01-22 Thread Florian Klämpfl
Am 22.01.2017 um 19:33 schrieb Marc Santhoff: > Hi, > > I'd like to know if the floating point hardware on STM32F103 What floating point hardware does it have? According to a quick search, it is a Cortex-M3 which has no hardware floating point support? > is > supported by the fpc cross

Re: [fpc-pascal] fpc for ARM on STM32F103

2017-01-22 Thread Marc Santhoff
On So, 2017-01-22 at 22:05 +0100, Florian Klämpfl wrote: > Am 22.01.2017 um 21:43 schrieb Marc Santhoff: > > On So, 2017-01-22 at 21:20 +0100, Florian Klämpfl wrote: > >> Am 22.01.2017 um 19:33 schrieb Marc Santhoff: > >>> Hi, > >>> > >>> I'd like to know if the floating point hardware on

Re: [fpc-pascal] fpc for ARM on STM32F103

2017-01-22 Thread Marc Santhoff
On So, 2017-01-22 at 21:20 +0100, Florian Klämpfl wrote: > Am 22.01.2017 um 19:33 schrieb Marc Santhoff: > > Hi, > > > > I'd like to know if the floating point hardware on STM32F103 > > What floating point hardware does it have? According to a quick search, it is > a Cortex-M3 which has > no

Re: [fpc-pascal] fpc for ARM on STM32F103

2017-01-22 Thread Florian Klämpfl
Am 22.01.2017 um 21:43 schrieb Marc Santhoff: > On So, 2017-01-22 at 21:20 +0100, Florian Klämpfl wrote: >> Am 22.01.2017 um 19:33 schrieb Marc Santhoff: >>> Hi, >>> >>> I'd like to know if the floating point hardware on STM32F103 >> >> What floating point hardware does it have? According to a

[fpc-pascal] fpc for ARM on STM32F103

2017-01-22 Thread Marc Santhoff
Hi, I'd like to know if the floating point hardware on STM32F103 is supported by the fpc cross compiler. ARmv7 this is according to: http://j-software.dk/stm32f103.php Will fpc use floating point support on those SoCs? TIA, Marc ___ fpc-pascal

Re: [fpc-pascal] Deleting 'Nonexistent' files under windows

2017-01-22 Thread Sven Barth
Am 23.01.2017 05:54 schrieb "Rolf Grunsky" : > > Is it possible to access files that have path lengths too long to access from explorer through Windows API from Pascal? > > I keep ending up with these very long file names which then I can not access. It seems that Windows

Re: [fpc-pascal] Deleting 'Nonexistent' files under windows

2017-01-22 Thread Marco van de Voort
In our previous episode, Rolf Grunsky said: > Is it possible to access files that have path lengths too long to access > from explorer through Windows API from Pascal? > > I keep ending up with these very long file names which then I can not > access. It seems that Windows will create the

Re: [fpc-pascal] FPC run (run program after compile)

2017-01-22 Thread Lars
On Sat, January 21, 2017 11:54 pm, I previously wrote: > https://github.com/z505/fpcRun > > > Project started on github. Tested to work on Windows. > > > Now I just have to try Unix, as, executeprocess works slightly different > on that system and some absolute path configuration to fpc might be

Re: [fpc-pascal] Language constructs and types that dependent upon system unit

2017-01-22 Thread gabor
This significantly complicates my project. I would avoid this. After a few tests, I can say that it works correctly with the linked system unit and cmem. Unfortunately, this greatly complicates build process which is disproportionate to amount of code. So I decided to do it in C for now.