Index: httpsend.pas
===================================================================
--- httpsend.pas	(revision 137)
+++ httpsend.pas	(working copy)
@@ -79,7 +79,7 @@
    the transfer data types.}
   TTransferEncoding = (TE_UNKNOWN, TE_IDENTITY, TE_CHUNKED);
 
-  {:abstract(Implementation of HTTP protocol.)}
+  {:Implementation of the HTTP protocol.}
   THTTPSend = class(TSynaClient)
   protected
     FSock: TTCPBlockSocket;
@@ -132,7 +132,9 @@
      If you use in URL 'https:' instead only 'http:', then your request is made
      by SSL/TLS connection (if you not specify port, then port 443 is used
      instead standard port 80). If you use SSL/TLS request and you have defined
-     HTTP proxy, then HTTP-tunnel mode is automaticly used .}
+     HTTP proxy, then HTTP-tunnel mode is automaticly used .
+
+     Usage example: MyHTTPSend.HttpMethod('GET', 'http://www.google.com');}
     function HTTPMethod(const Method, URL: string): Boolean;
 
     {:You can call this method from OnStatus event for break current data
Index: synaser.pas
===================================================================
--- synaser.pas	(revision 137)
+++ synaser.pas	(working copy)
@@ -200,7 +200,11 @@
   {$IFDEF DARWIN}
   MaxRates = 18;  //MAC
   {$ELSE}
-   MaxRates = 30; //UNIX
+    {$IFDEF CPUARM}
+    MaxRates = 19; //UNIX
+    {$ELSE}
+    MaxRates = 30; //UNIX
+    {$ENDIF}
   {$ENDIF}
 {$ELSE}
   MaxRates = 19;  //WIN
@@ -229,6 +233,7 @@
 {$IFNDEF DARWIN}
     ,(460800, B460800)
   {$IFDEF UNIX}
+    {$IFNDEF CPUARM}
     ,(500000, B500000),
     (576000, B576000),
     (921600, B921600),
@@ -240,6 +245,7 @@
     (3000000, B3000000),
     (3500000, B3500000),
     (4000000, B4000000)
+    {$ENDIF}
   {$ENDIF}
 {$ENDIF}
     );
@@ -1938,7 +1944,7 @@
     {$IFDEF DARWIN}
     SerialCheck(fpioctl(FHandle, TCIOflush, TCIOFLUSH));
     {$ELSE}
-    SerialCheck(fpioctl(FHandle, TCFLSH, TCIOFLUSH));
+    SerialCheck(fpioctl(FHandle, TCFLSH, Pointer(TCIOFLUSH)));
     {$ENDIF}
   {$ENDIF}
   FBuffer := '';
@@ -2336,4 +2342,4 @@
 end;
 {$ENDIF}
 
-end.
+end.