<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2-ppt DokuWiki" -->
<?xml-stylesheet href="https://wiki.nicksoft.com/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://wiki.nicksoft.com/feed.php">
        <title>NS Doc lcb:programming</title>
        <description></description>
        <link>https://wiki.nicksoft.com/</link>
        <image rdf:resource="https://wiki.nicksoft.com/lib/images/favicon.ico" />
       <dc:date>2026-05-07T17:04:29+03:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://wiki.nicksoft.com/lcb:programming:home"/>
                <rdf:li rdf:resource="https://wiki.nicksoft.com/lcb:programming:run-path"/>
                <rdf:li rdf:resource="https://wiki.nicksoft.com/lcb:programming:shared-static"/>
                <rdf:li rdf:resource="https://wiki.nicksoft.com/lcb:programming:siemens-mc35"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://wiki.nicksoft.com/lib/images/favicon.ico">
        <title>NS Doc</title>
        <link>https://wiki.nicksoft.com/</link>
        <url>https://wiki.nicksoft.com/lib/images/favicon.ico</url>
    </image>
    <item rdf:about="https://wiki.nicksoft.com/lcb:programming:home">
        <dc:format>text/html</dc:format>
        <dc:date>2009-06-11T17:06:53+03:00</dc:date>
        <title>Programming and Compiling</title>
        <link>https://wiki.nicksoft.com/lcb:programming:home</link>
        <description>*  Creating a shared and static library with GCC
	*  Libraries path or link to shared libraries
	*  Siemens MC35 GSM modem tips</description>
    </item>
    <item rdf:about="https://wiki.nicksoft.com/lcb:programming:run-path">
        <dc:format>text/html</dc:format>
        <dc:date>2008-09-22T14:07:15+03:00</dc:date>
        <title>Libraries path or link to shared libraries</title>
        <link>https://wiki.nicksoft.com/lcb:programming:run-path</link>
        <description>In all howtos I've found they say linking is so easy, but it never works if the library is not in default system paths. Why? You use all options from the howto and it won't run - shared library is not found. That's because they always forgot one option -rpath. It is a linker option and gcc doesn't understand it. I heard that on free BSD gcc understands corresponding option -R and passes it to the linker, but I never tested it.You can try this on BSD:</description>
    </item>
    <item rdf:about="https://wiki.nicksoft.com/lcb:programming:shared-static">
        <dc:format>text/html</dc:format>
        <dc:date>2008-09-11T02:03:51+03:00</dc:date>
        <title>Creating a shared and static library with GCC</title>
        <link>https://wiki.nicksoft.com/lcb:programming:shared-static</link>
        <description>The code for the library


helloworld.c:



#include &lt;stdio.h&gt;
void hello() {
  printf(&quot;Hello world!\n&quot;);
  printf(&quot;Creating a shared and static library with GCC howto by NickSoft Linux Cookbook (http://lcb.croler.net/)\n&quot;);
}


helloworld.h:



#ifndef _HELLOWORLD_H
#define _HELLOWORLD_H

void hello();

#endif //_HELLOWORLD_H</description>
    </item>
    <item rdf:about="https://wiki.nicksoft.com/lcb:programming:siemens-mc35">
        <dc:format>text/html</dc:format>
        <dc:date>2009-06-18T10:05:59+03:00</dc:date>
        <title>Siemens MC35 GSM modem tips</title>
        <link>https://wiki.nicksoft.com/lcb:programming:siemens-mc35</link>
        <description>Siemens MC35 logs

Some special characters
 HEX  dec  character  C Style  0x0D   13   &lt;cr&gt;    \r   0x0A   10   &lt;lf&gt;    \n  
Useful AT Commands

AT+CNMF

Set format of sms data - text or pdu


PDU format

Sending SMS in PDU format

Receiving SMS in PDU format
Octet(s)Description00 Length of SMSC information. Here the length is 0, which means that the SMSC stored in the phone should be used. Note: This octet is optional. On some phones this octet should be omitted! (Using the SMSC stored in phone …</description>
    </item>
</rdf:RDF>
